########################################################################################## # COMMUNITY ECOLOGY PRACTICAL (Anna Norberg & Nerea Abrego) ########################################################################################## # PREPARATIONS ########################################################################################## # You need R version 3.1.0 or later. Install R from: https://cran.r-project.org # Run the lines below — simply copy the lines from #* to #*, and paste to the R console # Or if you use the R editor, press ctrl+R, if R studio ctrl+enter #* install.packages("devtools") # install a compiling package library("devtools") # open it install_github("guiblanchet/HMSC") # install the modelling framework library("HMSC") # open it install.packages("vegan") # install the package for ordinations library("vegan") # open it #* ##########################################################################################