View source: R/tidy_eurostat.R
tidy_eurostat | R Documentation |
Transform raw Eurostat data table downloaded from the API into a tidy row-column-value format (RCV).
tidy_eurostat(
dat,
time_format = "date",
select_time = NULL,
stringsAsFactors = FALSE,
keepFlags = FALSE,
use.data.table = FALSE
)
dat |
a data_frame from |
time_format |
a string giving a type of the conversion of the time column from the
eurostat format. The default argument " |
select_time |
a character symbol for a time frequency or |
stringsAsFactors |
if |
keepFlags |
a logical whether the flags (e.g. "confidential",
"provisional") should be kept in a separate column or if they
can be removed. Default is |
use.data.table |
Use faster data.table functions? Default is FALSE. On Windows requires that RTools is installed. |
tibble in the melted format with the last column 'values'.
Przemyslaw Biecek, Leo Lahti, Janne Huovari and Pyry Kantanen
See citation("eurostat")
:
Kindly cite the eurostat R package as follows: Lahti L., Huovari J., Kainu M., and Biecek P. (2017). Retrieval and analysis of Eurostat open data with the eurostat package. The R Journal 9(1), pp. 385-392. doi: 10.32614/RJ-2017-019 Lahti, L., Huovari J., Kainu M., Biecek P., Hernangomez D., Antal D., and Kantanen P. (2023). eurostat: Tools for Eurostat Open Data [Computer software]. R package version 4.0.0. https://github.com/rOpenGov/eurostat To see these entries in BibTeX format, use 'print(<citation>, bibtex=TRUE)', 'toBibtex(.)', or set 'options(citation.bibtex.max=999)'.
When citing data downloaded from Eurostat, see section "Citing Eurostat data"
in get_eurostat()
documentation.
get_eurostat()
, convert_time_col()
, eurotime2date()
## Not run:
# Example of a dataset with multiple time series
get_eurostat("AVIA_GOR_ME",
time_format = "date_last",
cache = F
)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.