import.dhs {prevR} | R Documentation |
Import DHS data.
Description
This step by step function guides users to import data from a Demographic and Health Survey (DHS) and create an object of class prevR.
Usage
import.dhs(file.sav, file.dbf)
Arguments
file.sav |
DHS data (one individual per line) in SPSS format (.sav), downloaded from https://www.dhsprogram.com/. Could also be directly a data.frame. |
file.dbf |
GPS position of clusters in DATABASE format (.dbf), downloaded from https://www.dhsprogram.com/. Could also be directly a data.frame. |
Note
If you don't provide the precise path of files, R will check the
working directory (see base::setwd()
).
To specify the file path, see base::file.path()
.
This function was developed specifically for importing DHS.
For a generic function for creating an object of class prevR,
see as.prevR()
.
See Also
as.prevR()
, prevR class.
Examples
## Not run:
imported_data <- import.dhs("data.sav", "gps.dbf")
## End(Not run)
[Package prevR version 5.0.0 Index]