ggvegan for the latest version of R

3.1k Views Asked by At

Is there an alternative to ggvegan for creating a pca plot in R version 4.0.0. I have used the rda function with the following script:

dput(mite.env)
pca<-rda(mite.env[,1:2])
summary(pca)
autoplot(pca, arrows = TRUE)

However, it appears that ggvegan is not available for the latest version of R. Is there an alternative?

1

There are 1 best solutions below

10
On

Do

if (!require(devtools)) {
  install.packages("devtools")
}
devtools::install_github("gavinsimpson/ggvegan")

devtools::install_github("githubadress") should be always in your toolbelt as an R developer to fetch the newest up-to-date versions of an R package freshly from github.

I tried this with R 4.0.2 and it worked.