The IMD
package provides easy access to the Indices of Multiple Deprivation for the UK’s nations at various geographical levels:
You can install the development version from GitHub with:
The IMD
package provides several datasets for the IMD in each UK nation:
IMD::imd_england_lsoa
IMD::imd_england_msoa
IMD::imd_england_ward
IMD::imd_england_lad
IMD::imd_wales_lsoa
IMD::imd_wales_msoa
IMD::imd_wales_ward
IMD::imd_wales_lad
IMD::imd_scotland_dz
IMD::imd_scotland_iz
IMD::imd_scotland_lad
IMD::imd_northern_ireland_soa
IMD::imd_northern_ireland_lad
We have also included the composite 2020 UK Index of Multiple Deprivation produced by mySociety, allowing comparison of deprivation across UK nations. For more information about how and when to use this version of the IMD, see their README.
Rather than providing a copy of this data, the IMD
package loads the data hosted on mySociety’s GitHub. To load these files, run the following code:
This function defaults to loading the England-focused composite index; change the nation
parameter to the first letter of one of the devolved UK nations to load the other versions.
How many wards in Wales are there with the 100% of the population living in areas classified as among the most deprived?
library(IMD)
imd_wales_ward |>
dplyr::filter(Extent == 1) |>
dplyr::count()
#> # A tibble: 1 x 1
#> n
#> <int>
#> 1 14
If you encounter a clear bug, please file an issue with a minimal reproducible example on GitHub.
Please note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms.