Data sets to be used for analysis
Go to file
dr. M.S. (Matthijs) Berends d3e74dd632 Update 'cbs_2021/cbs_data_updaten.R' 2021-03-30 18:23:43 +02:00
cbs_2021 Update 'cbs_2021/cbs_data_updaten.R' 2021-03-30 18:23:43 +02:00
LICENSE Initial commit 2021-03-30 17:40:00 +02:00
README.md cbs 2021-03-30 18:22:46 +02:00

README.md

datasets

CBS 2021

Updating

See cbs_2021/cbs_data_updaten.R to update the data sets.

Direct downloading

For quicky reading in data sets from this remote repo:

read_rds_remote <- function(file, quiet = TRUE) {
  # Remote read
  if (grepl("^http", file, ignore.case = TRUE)) {
    # Make temp local copy
    file_local <- basename(file)
    file_local <- file.path(tempdir(), file_local)
    # Download file
    download.file(file, file_local, quiet = quiet, mode = "wb")
    file <- file_local
  }
  readRDS(file)
}

And then for e.g. NUTS3 regions:

nut3 <- read_rds_remote("https://git.web.rug.nl/InterventionalModellingMMBI/datasets/raw/branch/master/cbs_2021/nuts3.rds")