I hereby claim:
- I am dickoa on github.
- I am dickoa (https://keybase.io/dickoa) on keybase.
- I have a public key whose fingerprint is 188B 5A3A C523 96A3 1BED AAA6 D4F1 DBD4 6340 C474
To claim this, I am signing this object:
library(popdata) | |
library(unhcrthemes) | |
library(tidyverse) | |
library(janitor) | |
### Most function use "pd_" prefix | |
### "pd" stands for PopData | |
### Log into popdata | |
# pd_login() |
#' @noRd | |
repeat_to_df <- function(x, form) { | |
nm <- unique(form$name[form$type %in% "begin_repeat"]) | |
nm <- intersect(names(x), nm) | |
if (length(nm) > 0) { | |
x <- lapply(nm, function(n) { | |
res <- x[[n]] | |
res <- res[vapply(res, is.data.frame, logical(1))] | |
res <- rbindlist(res, fill = TRUE) |
remotes::install_github("dickoa/unhcrthemes") | |
library(unhcrthemes) | |
library(ggplot2) | |
library(ragg) | |
### checking scale_color | |
ggplot(iris, aes(x = Petal.Length, y = Petal.Width, color = Species)) + | |
geom_point() + | |
scale_color_unhcr_d(palette = "pal_main_qual") + |
year | poc | n | |
---|---|---|---|
2010 | Internally displaced persons | 25 | |
2010 | UNRWA refugees | 4.7 | |
2010 | UNHCR refugees | 10.5 | |
2010 | Asylum-seekers | 0.8 | |
2010 | Venezuelans displaced abroad | 0 | |
2011 | Internally displaced persons | 22.4 | |
2011 | UNRWA refugees | 4.8 | |
2011 | UNHCR refugees | 10.4 | |
2011 | Asylum-seekers | 0.9 |
{ | |
"name": "hno_ukr", | |
"title": "Ukraine: Humanitarian Needs Overview", | |
"type": "cookbook", | |
"columns": [ | |
"#inneed", | |
"#affected", | |
"#loc", | |
"#country" | |
], |
{ | |
"name": "hno_sector_drc", | |
"title": "Humanitarian Needs Overview for DRC", | |
"type": "cookbook", | |
"columns": [ | |
"#inneed", | |
"#sector" | |
], | |
"recipes": [ | |
{ |
{ | |
"name": "hno_sector", | |
"title": "Humanitarian Needs Overview", | |
"type": "cookbook", | |
"columns": [ | |
"#inneed", | |
"#region", | |
"#country", | |
"#adm1", | |
"#sector" |
{ | |
"name": "hrp", | |
"title": "Humanitarian Responses Plan", | |
"type": "cookbook", | |
"columns": [ | |
"#targeted", | |
"#region", | |
"#country", | |
"#adm1" | |
], |
I hereby claim:
To claim this, I am signing this object:
library(dplyr) | |
library(RPostgres) | |
mydb <- src_postgres(dbname = "yourdb" | |
user = "user", | |
password = "password", | |
host = "localhost", | |
port = 5432L) | |