z22_features {z22} | R Documentation |
Features
Description
Get a list of available features. To get a list of all categories, see
z22_categories
.
For further clarification of terms used in the feature labels, see the glossary.
Usage
z22_features(theme = NULL, year = NULL, res = NULL, legacy_names = FALSE)
Arguments
theme |
Theme of the feature. Available themes are |
year |
Census year. Can be 2011 or 2022. If |
res |
Resolution of the feature grid. Can be |
legacy_names |
If |
Value
A tibble containing the following columns:
theme
: Theme of the featurefeature
: Feature namedesc
: Human-readable english descriptionz22
: Whether the feature is available in the Census 2022z11_100m
: Whether the feature is available in the Census 2011 at a 100m resolutionz11_1km
: Whether the feature is available in the Census 2011 at a 1km resolutionhas_cat
: Whether the feature is is further divided into categories.
Examples
# return all features related to dwellings
z22_features("dwellings")
# return all features available in the Census 2011
z22_features(year = 2011)
# return all features available in 2011 at a 1km resolution
z22_features(year = 2011, res = "1km")