install.packages("bookdown")
# or the development version
::install_github("rstudio/bookdown") devtools
1 Introduction
NOTE:Andres, finish chapter
1.1 Ojectives
This book explains several things,
- An overview of the project from a technical perspective.
- The interaction between R packages developed to manage the data and do the calculations.
- The different types of data in the PIP project and the interaction between them.
- How the poverty calculator, the table maker, and the Statistics Online (SOL) platform are updated.
- Technical standalone procedure necessary for the execution of some parts of the project.
1.2 Technical requirements
You need to make sure that the bookdown
package is installed in your local computer
Remember each Rmd file contains one and only one chapter, and a chapter is defined by the first-level heading #
.
Make sure to install the latest version of PIP R packages by typing the following
<- utils::installed.packages()[,1]
ipkg
<- function(pkg, ipkg) {
pip_install if (isFALSE(pkg %in% ipkg)) {
<- paste0("PIP-Technical-Team/", pkg)
gitcall ::install_github(gitcall, dependencies = TRUE)
remotesTRUE
else {
} FALSE
}
}
<- c("pipload", "pipaux", "wbpip", "piptb", "pipdm", "pipapi")
pkgs
::walk(pkgs, pip_install, ipkg = ipkg) purrr