Skip to content

R package for community ecologists: popular ordination methods, ecological null models & diversity analysis

License

Notifications You must be signed in to change notification settings

vegandevs/vegan

Repository files navigation

vegan: an R package for community ecologists

Ordination methods, diversity analysis and other functions for community and vegetation ecologists.

R-CMD-check CRAN_Status_Badge Downloads R-universe

Website for the development version of the vegan package.

Vignettes are available on R-universe

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'))