Installing ez library on R -
i new r , feeling bit confused. getting error message
library(ez)
error in loadnamespace(j <- i[[1l]], c(lib.loc, .libpaths()), versioncheck = vi[[j]]) :
namespace ‘reshape2’ 1.4.1 loaded, >= 1.4.2 required error: package or namespace load failed ‘ez’
i have checked version have , says 1.4.2. should do? thank much
maybe ‘reshape2’ 1.4.1 still loaded..try following
remove.packages("reshape2") remove.packages("ez") install.packages("ez")
should work afterwards.
if not try afterwards
detach("package:reshape2", unload=true)
and additionally restart r session.
Comments
Post a Comment