Nothing
# Create test data sets
#
# Different data sources are stored in 'data-raw' and formatted data sets are in
# the folder 'data'.
library(tidyverse)
library(testthat)
library(readxl)
library(pxweb)
library(haven)
library(arrow)
bexsta <-
pxweb_get(url = "https://bank.stat.gl/api/v1/en/Greenland/BE/BE01/BE0120/BEXSTA.px",
query = list("place of birth" = c("T","N","S"),
"gender"= "*",
"time"= as.character(2018:2022)
)
) %>%
as.data.frame(column.name.type = "code",
variable.value.type = "code"
) %>%
rename(persons = last_col()) %>%
arrange_all()
saveRDS(bexsta, file = test_path('fixtures', 'data', 'BEXSTA.rds'))
write_parquet(bexsta, test_path('fixtures', 'data', 'BEXSTA_parquet.parquet'))
bexsta %>%
filter(`place of birth` != 'T', gender != "T") %>%
write_rds(test_path('fixtures', 'data', 'BEXSTA_WITHOUT_TOTALS.rds'))
test_path('fixtures', 'data-raw', 'BEXLTALL_RAW.rds') %>%
read_rds() %>%
rename(`place of birth` = pob,
nop = nop.code,
age = age.code,
sex = sex.code,
calcbase = calcbase.code,
measure = measure.code
) %>%
filter(is.finite(value)) %>%
group_by(age) %>%
saveRDS(file = test_path('fixtures', 'data', 'BEXLTALL.rds'))
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.