This blog provides support material for readers of the book R for Conservation and Development Projects - a Primer for Practitioners.
condev
packageR 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:
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")
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)