The hardware and bandwidth for this mirror is donated by METANET, the Webhosting and Full Service-Cloud Provider.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]metanet.ch.
When downloading large datasets, nomisdata automatically handles pagination:
Enable caching to avoid re-downloading data:
For very large queries across multiple parameters:
# Employment data
employment <- fetch_nomis(
"NM_168_1",
time = "latest",
geography = "TYPE499"
)
# Benefits data
benefits <- fetch_nomis(
"NM_1_1",
time = "latest",
geography = "TYPE499"
)
# Join by geography
library(dplyr)
combined <- employment |>
inner_join(benefits, by = "GEOGRAPHY_CODE", suffix = c("_emp", "_ben"))These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.