install.packages('eemeans') Warning in install.packages : package ‘eemeans’ is not available (for R version 3.4.4)
Description of issue -
I am unable to load the eemeans package.
Steps taken so far -
The latest version of R is 4.0.3 (RStudio preview build is 1.4.*). https://www.r-project.org/
The package requires R >= 3.5.o, so you'll need to update your version of R. https://CRAN.R-project.org/package=emmeans
You are confusing your R version with your RStudio version. RStudio is an IDE (Integrated Development Environment) for the R programming language, but they can have independent versions.
eemeans requires R >= 3.5.0 so you have to update R first, the latest stable version is 4.0.2 and you can download it from here https://cran.r-project.org/bin/macosx/
eemeans
I agree with what's been said about updating R, but in addition it looks like maybe you meant to load emmeans, not eemeans? Apologies if there's also an eemeans package I don't know about.
emmeans
Yeah you're correct, I meant to type emmeans. Thank you
Updated R to 4.0.2 and I can now load the required package. Thank you all for the help.
As a bonus advice, after updating R you have to update your packages with checkBuilt = TRUE
checkBuilt = TRUE
update.packages(checkBuilt=TRUE)
Oh cool, thanks for that!
This topic was automatically closed 21 days after the last reply. New replies are no longer allowed. If you have a query related to it or one of the replies, start a new topic and refer back with a link.