The nomisdata package provides easy access to UK
official statistics from the Nomis database, including:
For offline work, use the included sample dataset:
library(nomisdata)
data(jsa_sample)
head(jsa_sample)
#> # A tibble: 3 × 13
#> GEOGRAPHY_CODE GEOGRAPHY_NAME SEX SEX_NAME ITEM ITEM_NAME MEASURES
#> <chr> <chr> <int> <chr> <int> <chr> <int>
#> 1 2092957697 United Kingdom 7 Total 1 JSA claimants 20100
#> 2 2092957698 Great Britain 7 Total 1 JSA claimants 20100
#> 3 2092957699 England 7 Total 1 JSA claimants 20100
#> # ℹ 6 more variables: MEASURES_NAME <chr>, DATE <chr>, DATE_NAME <chr>,
#> # OBS_VALUE <dbl>, OBS_STATUS <chr>, RECORD_COUNT <int>For higher rate limits (100,000 vs 25,000 rows):
vignette("geography") for working with
geographiesvignette("time-series") for time series
queriesvignette("caching") for caching strategies