{"id":38654449,"url":"https://github.com/openwashdata/unhcrwash","last_synced_at":"2026-01-17T09:25:36.651Z","repository":{"id":263580962,"uuid":"888007853","full_name":"openwashdata/unhcrwash","owner":"openwashdata","description":"A dataset of WASH indicators in refugee camps","archived":false,"fork":false,"pushed_at":"2024-11-21T10:37:04.000Z","size":3265,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-04T23:46:54.987Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://openwashdata.github.io/unhcrwash/","language":"R","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"cc-by-4.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/openwashdata.png","metadata":{"files":{"readme":"README.Rmd","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":"CITATION.cff","codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-11-13T16:50:08.000Z","updated_at":"2024-11-21T10:37:14.000Z","dependencies_parsed_at":"2024-11-19T10:46:09.381Z","dependency_job_id":"dbcedb11-423f-4953-b96e-5bb5e106707b","html_url":"https://github.com/openwashdata/unhcrwash","commit_stats":null,"previous_names":["openwashdata/unhcrwash"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/openwashdata/unhcrwash","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openwashdata%2Funhcrwash","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openwashdata%2Funhcrwash/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openwashdata%2Funhcrwash/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openwashdata%2Funhcrwash/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/openwashdata","download_url":"https://codeload.github.com/openwashdata/unhcrwash/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openwashdata%2Funhcrwash/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28505550,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-17T06:57:29.758Z","status":"ssl_error","status_checked_at":"2026-01-17T06:56:03.931Z","response_time":85,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-01-17T09:25:34.276Z","updated_at":"2026-01-17T09:25:36.633Z","avatar_url":"https://github.com/openwashdata.png","language":"R","funding_links":[],"categories":[],"sub_categories":[],"readme":"---\noutput: github_document\nalways_allow_html: true\neditor_options: \n  markdown: \n    wrap: 72\n  chunk_output_type: console\n---\n\n\u003c!-- README.md is generated from README.Rmd. Please edit that file --\u003e\n\n```{r, include = FALSE}\nknitr::opts_chunk$set(\n  collapse = TRUE,\n  comment = \"#\u003e\",\n  fig.path = \"man/figures/README-\",\n  out.width = \"100%\",\n  message = FALSE,\n  warning = FALSE,\n  fig.retina = 2,\n  fig.align = 'center'\n)\n```\n\n# unhcrwash\n\n\u003c!-- badges: start --\u003e\n\n[![License: CC BY\n4.0](https://img.shields.io/badge/License-CC_BY_4.0-lightgrey.svg)](https://creativecommons.org/licenses/by/4.0/)\n\n[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.14185117.svg)](https://zenodo.org/doi/10.5281/zenodo.14185117)\n\u003c!-- badges: end --\u003e\n\nThe goal of unhcrwash is to make available data on WASH indicators in refugee camps and settlements.\n\n## Installation\n\nYou can install the development version of unhcrwash from\n[GitHub](https://github.com/) with:\n\n``` r\n# install.packages(\"devtools\")\ndevtools::install_github(\"openwashdata/unhcrwash\")\n```\n\n```{r}\n## Run the following code in console if you don't have the packages\n## install.packages(c(\"dplyr\", \"knitr\", \"readr\", \"stringr\", \"gt\", \"kableExtra\"))\nlibrary(dplyr)\nlibrary(knitr)\nlibrary(readr)\nlibrary(stringr)\nlibrary(gt)\nlibrary(kableExtra)\n```\n\nAlternatively, you can download the individual datasets as a CSV or XLSX\nfile from the table below.\n\n```{r, echo=FALSE, message=FALSE, warning=FALSE}\n\nextdata_path \u003c- \"https://github.com/openwashdata/unhcrwash/raw/main/inst/extdata/\"\n\nread_csv(\"data-raw/dictionary.csv\") |\u003e \n  distinct(file_name) |\u003e \n  dplyr::mutate(file_name = str_remove(file_name, \".rda\")) |\u003e \n  dplyr::rename(dataset = file_name) |\u003e \n  mutate(\n    CSV = paste0(\"[Download CSV](\", extdata_path, dataset, \".csv)\"),\n    XLSX = paste0(\"[Download XLSX](\", extdata_path, dataset, \".xlsx)\")\n  ) |\u003e \n  knitr::kable()\n\n```\n\n## Data\n\nThe package provides access to WASH indicators in refugee camps and settlements \n\n```{r}\nlibrary(unhcrwash)\n```\n\n### unhcrwash\n\nThe dataset `unhcrwash` contains data about WASH indicators in refugee camps and settlements.\nIt has `r nrow(unhcrwash)` observations and `r ncol(unhcrwash)` variables\n\n```{r}\nunhcrwash |\u003e \n  head(3) |\u003e \n  gt::gt() |\u003e\n  gt::as_raw_html()\n```\n\nFor an overview of the variable names, see the following table.\n\n```{r echo=FALSE, message=FALSE, warning=FALSE}\nreadr::read_csv(\"data-raw/dictionary.csv\") |\u003e\n  dplyr::filter(file_name == \"unhcrwash.rda\") |\u003e\n  dplyr::select(variable_name:description) |\u003e \n  knitr::kable() |\u003e \n  kableExtra::kable_styling(\"striped\") |\u003e \n  kableExtra::scroll_box(height = \"200px\")\n```\n\n\n## Example\n\n```{r}\nlibrary(unhcrwash)\n\n# Average Water Availability by Country \nunhcrwash |\u003e dplyr::group_by(country) |\u003e \n  dplyr::summarise(avg_water_avail = mean(liters_per_person_per_day, na.rm = TRUE)) |\u003e \n  dplyr::arrange(desc(avg_water_avail)) |\u003e \n  head(5) |\u003e \n  gt::gt() |\u003e \n  gt::as_raw_html()\n```\n\n```{r}\nlibrary(ggplot2)\n# Toilet availability\nunhcrwash |\u003e \n  dplyr::mutate(year = lubridate::year(as.Date(start_date))) |\u003e  # Extract year as whole number\n  dplyr::filter(!is.na(year) \u0026 !is.na(persons_per_toilet)) |\u003e    # Remove missing values\n  dplyr::group_by(year) |\u003e \n  dplyr::summarise(avg_persons_per_toilet = mean(persons_per_toilet, na.rm = TRUE)) |\u003e \n  ggplot2::ggplot(aes(x = year, y = avg_persons_per_toilet)) +\n  ggplot2::geom_line() +\n  ggplot2::labs(title = \"Average Persons per Toilet in Refugee Camps\",\n                x = \"Year\",\n                y = \"Average persons per toilet\") +\n  ggplot2::theme_minimal()\n```\n\n```{r}\n# Countries with highest refugee populations\nunhcrwash |\u003e \n  dplyr::group_by(country) |\u003e \n  dplyr::summarise(total_population = sum(refugee_pop, na.rm = TRUE)) |\u003e \n  dplyr::arrange(desc(total_population)) |\u003e \n  head(5) |\u003e \n  gt::gt() |\u003e \n  gt::as_raw_html()\n```\n\n\n## License\n\nData are available as\n[CC-BY](https://github.com/openwashdata/unhcrwash/blob/main/LICENSE.md).\n\n## Citation\n\nPlease cite this package using:\n\n```{r}\ncitation(\"unhcrwash\")\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopenwashdata%2Funhcrwash","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fopenwashdata%2Funhcrwash","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopenwashdata%2Funhcrwash/lists"}