Awesome
vegan: an R package for community ecologists
Ordination methods, diversity analysis and other functions for community and vegetation ecologists.
<!-- badges: start --> <!-- badges: end -->Website for the development version of the vegan package.
Vignettes are available on R-universe
- Introduction to ordination in vegan
- Partition of Variation
- Diversity analysis in vegan
- Design decisions and implementation
Installation
To install the development version of vegan you can use the usual git
and R CMD build -> R CMD INSTALL
dance on the cloned repo (or downloaded sources). You'll need to be able to install packages from source for that to work; if you don't have the relevant developer tools, you won't be able to install vegan this way.
Using remotes
If you do have the developer tools installed but don't want the hassle of keeping a local source code tree up-to-date, use the remotes package:
install.packages("remotes")
remotes::install_github("vegandevs/vegan")
Installing binaries from R Universe
If you just want to install a binary version of the packages, just as you would from CRAN, you can install from our R Universe repository. Run the following in your R session:
install.packages('vegan',
repos = c('https://vegandevs.r-universe.dev','https://cloud.r-project.org'))