employment_get {iotables} | R Documentation |
Get employment data
Description
Download the employment data for a country and arrange it to the 64x64 SIOTs.
Usage
employment_get(
geo,
year = "2010",
sex = "Total",
age = "Y_GE15",
labelling = "iotables",
data_directory = NULL,
force_download = FALSE
)
Arguments
geo |
The country code. |
year |
The year. The average employment will be created for the given
year, starting with |
sex |
Defaults to |
age |
Defaults to |
labelling |
Either |
data_directory |
Defaults to |
force_download |
Defaults to |
Details
Currently works only with product x product tables.
Value
A data.frame with auxiliary metadata to conform the symmetric input-output tables.
Source
Eurostat statistic Employment by sex, age and detailed economic activity (from 2008 onwards, NACE Rev. 2 two digit level) - 1 000
See Also
Other import functions:
airpol_get()
,
iotables_download()
,
iotables_metadata_get()
,
iotables_read_tempdir()
Examples
## Not run:
io_tables <- get_employment (
geo = "CZ",
year = "2010",
sex = "Total",
age = "Y_GE15",
data_directory = NULL,
force_download = TRUE
)
## End(Not run)