Data on Effects of Climate Vulnerability on Sanitation Access, Sanitation Infrastructure Functionality and Households’ Fecal Sludge Management Practices in Rural Cambodia.
You can install the development version of climatevulnerabilitykhm
from GitHub with:
# install.packages("devtools")
devtools::install_github("openwashdata/climatevulnerabilitykhm")
The package provides access to one dataset.
library(climatevulnerabilitykhm)
The climatevulnerabilitykhm
dataset has ? variables and 1472
observations.
library(climatevulnerabilitykhm)
library(ggplot2)
## basic example code
province <- unique(clmvulnerability$Prov)
cat("The data is collected from the following Cambodian provinces: \n",
paste(province, collapse = ", "))
#> The data is collected from the following Cambodian provinces:
#> Siemreap, Kandal, Kampong Thom, Prey Veng, Svay Rieng
Barplot of gender counts
ggplot(data = clmvulnerability, aes(Gndr)) +
geom_bar()
Age distribution
ggplot(data = clmvulnerability, aes(Age)) +
geom_histogram(binwidth = 5)