This step by step function guides users to import data from a Demographic and Health Survey (DHS) and create an object of class prevR.

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

Examples

if (FALSE) {
imported_data <- import.dhs("data.sav", "gps.dbf")
}