add_nuts_level {eurostat} | R Documentation |
Add the statistical aggregation level to data frame
Description
Eurostat regional statistics contain country, and various regional level information. In many cases, for example, when mapping, it is useful to filter out national level data from NUTS2 level regional data, for example.
This function will be deprecated. Use the more comprehensive
[regions::validate_nuts_regions()]
instead.
Usage
add_nuts_level(dat, geo_labels = "geo")
Arguments
dat |
A data frame or tibble returned by |
geo_labels |
A geographical label, defaults to |
Details
DEPRECATED FUNCTIONS FOR BACKWARD COMPATIBILITY FUNCTIONS GIVE WARNING AND CALL APPROPRIATE regions FUNCTIONS
Value
a new numeric variable nuts_level with the numeric value of NUTS level 0 (country), 1 (greater region), 2 (region), 3 (small region).
Author(s)
Daniel Antal
See Also
regions::validate_nuts_regions()
Other regions functions:
harmonize_geo_code()
,
recode_to_nuts_2013()
,
recode_to_nuts_2016()
,
reexports
Examples
dat <- data.frame(
geo = c("FR", "IE04", "DEB1C"),
values = c(1000, 23, 12)
)
add_nuts_level(dat)