no package called ‘sjlabelled’ - r

I'm trying to use sjt.lmer to make a table of my lmer regression results, however, when I tried to library package sjPlot, this error displayed:
Error: package or namespace load failed for ‘sjPlot’ in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]):
there is no package called ‘sjlabelled’
I've already installed package sjlabelled, sjmisc, sjPlot but still doesn't work. Any suggestion will be appreciated!

Related

How to install the aruleviz R Package?

I have been trying to install the aruleviz R package but I keep getting the following error message:
Error: package or namespace load failed for ‘arulesViz’ in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]):
there is no package called ‘gplots’
Does anyone know how to troubleshoot it?
Thank you in advance!

How to install plm package?

Even after install plm package, I am getting the following error how to resolve this issue?
library(plm)
Error: package or namespace load failed for ‘plm’ in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]):
there is no package called ‘Rdpack’

I am getting an error installing tidyverse on R studio

I am trying to install the tidyverse package, but I get the following error:
Error: package or namespace load failed for ‘tidyverse’ in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]):
there is no package called ‘Rcpp’
I have done everything that I found, nothing seems to help. Thanks.

error loading packages R, almost all packages

Today I opened R as usual and loaded all my libraries as usual, however most of my packages report an error now!
For example
library(ggmap)
> library(ggmap)
Loading required package: ggplot2
Error: package or namespace load failed for ‘ggplot2’ in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]):
there is no package called ‘lazyeval’
Error: package ‘ggplot2’ could not be loaded
I have never had this error before or encountered the package 'lazyeval'.
The story is similar for many other packages:
library(lubridate)
Error: package or namespace load failed for ‘lubridate’ in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]):
there is no package called ‘stringi’
Somehow it seems that I need to install all packages again?
Any idea what happened? As far as I know nothing has changed since I used R yesterday..

Installing Caret and ggplot2 packages in R 3.2.5

I've just installed a new version of R studio 3.2.5 that way I can install packages caret and ggplot2 however I always come across the same errors and not exactly sure where the problem is.
library(caret)
Loading required package: lattice
Loading required package: ggplot2
Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
there is no package called ‘Rcpp’
Error: package ‘ggplot2’ could not be loaded**
After this message I've install.packages("ggplot2")
and this shows up
library(ggplot2)
Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
there is no package called ‘Rcpp’
Error: package or namespace load failed for ‘ggplot2’**
Does anyone have any suggestions?
try this
install.packages("ggplot2", dependencies = TRUE)
I have also got the same error and i tried many ways given in various solutions.
one solution which worked is
install.packages("stringi")
Then it many give errors stating some of the dependent libraries are missing.
Install those libraries, it will work.

Resources