R4condevblog

Logo

This blog provides support material for readers of the book R for Conservation and Development Projects - a Primer for Practitioners.

View the Project on GitHub NathanWhitmore/R4condevblog

How to install the condev package

R for Conservation and Development Projects uses example data set which are stored on GitHub. These can be easily be directly from R using the following steps:

How to download

First install the “remotes” package via:

install.packages("remotes")

in Program R then run:

library("remotes") 
install_github("NathanWhitmore/condev")

and then load the package via:

library("condev")

How to access the data

The data available for use can be viewed by the function:

data()

To bring a data set (e.g. ‘demo1’) into the R environment use:

data(demo1)

BACK to INDEX