Get Marawi Barangay level data masterlist from the Open Marawi Google Drive Database
Source:R/marawi_get.R
marawi_get_marawi.Rd
Get Marawi Barangay level data masterlist from the Open Marawi Google Drive Database
Usage
marawi_get_marawi(
dataset = c("metadata", "demographics", "movements", "culture", "housing",
"facilities", "establishments", "modetranspo", "conflict", "publicschools",
"privateschools", "health")
)
marawi_get_marawi_all(tabular = TRUE)
Arguments
- dataset
A string value from either "metadata", "demographics", "movements", "culture", "housing", "facilities", "establishments", "modetranspo", "conflict", "publicschools", "privateschools", and "health" specifying the masterlist data to retrieve. If not specified, will default to "metadata".
- tabular
Logical. Should output be flattened into a single data.frame? Default is TRUE. If FALSE, output is a list of data.frames for each sheet in the masterlist Excel file.
Value
A tibble or a list of tibbles of the specified masterlist dataset available in the Lanao del Sur directory of the Open Marawi Database.
Examples
## Retrieve the metadata dataset of the Lanao del Sur directory in the Open
## Marawi database
marawi_get_marawi(dataset = "metadata")
#> # A tibble: 1,201 × 9
#> Broad Variable Categorie…¹ `Variable name` `Variable description` `Data type`
#> <chr> <chr> <chr> <chr>
#> 1 Identifier PSGC_prov "Philippine Standard … String
#> 2 Identifier Province "Province name" String
#> 3 Identifier PSGC_muni "Philippine Statistic… String
#> 4 Identifier Municipality "Municipality or City… String
#> 5 Identifier PSGC_bgy "Philippine Statistic… String
#> 6 Identifier Barangay "Barangay name" String
#> 7 Conflict Grn_zero "Barangay is one of t… dummy/bina…
#> 8 Economic Urban_rural "Urban-rural classifi… dummy/bina…
#> 9 Demographics pop_15N "Total population per… Values
#> 10 Demographics hhpn_15N "Total household popu… Values
#> # ℹ 1,191 more rows
#> # ℹ abbreviated name: ¹`Broad Variable Categories`
#> # ℹ 5 more variables: `Data entry` <chr>, `Sheet name` <chr>, Remarks <chr>,
#> # `Year covered` <chr>, `Data source` <chr>
if (FALSE) marawi_get_marawi_all()