Skip to content

Latest commit

 

History

History
51 lines (41 loc) · 1.47 KB

Dependencies.md

File metadata and controls

51 lines (41 loc) · 1.47 KB

wpRFPMS : Random Forests population modelling scripts

N|Solid

Dependencies and installation

wpgpRFPMS script requires the following R packages.

"rgdal" 
"raster" 
"randomForest" 
"quantregForest" 
"foreign"
"snow"
"doParallel"
"gdalUtils"
"jsonlite"
"logging" 
"doSNOW"
"RCurl"
"plyr"
"wpgpDownloadR"
"wpUtilities"

Most of the above R packages can be installed from the CRAN repository.

wpgpDownloadR is an R Package interface used for downloading raster datasets from the WorldPop FTP repository. Installation of wpgpCovariates isn't available from CRAN yet, but you can install it directly from github with the following code in the R console:

install.packages("devtools")
devtools::install_github("wpgp/wpgpDownloadR")

# load package
library(wpgpDownloadR)

wpUtilities is an R Package containing the tools to work with raster files, such as zonal stats and rasterizing data, within the context of WorldPop modelling framework and potentially beyond. Installation of wpUtilities isn't available from CRAN yet, but you can install it directly from github with the following code in the R console:

install.packages("devtools")
devtools::install_github("wpgp/wpUtilities")

# load package
library(wpUtilities)