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?
Do
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.