getEurostatRaw {SmarterPoland} | R Documentation |
Download a Dataset from the Eurostat Database
Description
Download a dataset from the eurostat database. The dataset is transformed into the tabular format.
Usage
getEurostatRaw(kod = "educ_iste", rowRegExp=NULL, colRegExp=NULL,
strip.white = TRUE)
Arguments
kod |
A code name for the data set of interested. See the table of contents of eurostat datasets for more details. |
rowRegExp |
If not NULL this regular expression will be used to filter rows out of downloaded file. |
colRegExp |
If not NULL this regular expression will be used to filter collumns out of downloaded file. |
strip.white |
Passed to the internal |
Value
A dataset in data.frame format. First column contains names of cases. Column names usually corresponds to years.
Author(s)
Przemyslaw Biecek
References
Data is downloaded from http://ec.europa.eu/eurostat/estat-navtree-portlet-prod/BulkDownloadListing
website.
See Also
See Also as getEurostatTOC
, getEurostatRaw
, grepEurostatTOC
.
Examples
## Not run:
tmp <- getEurostatRaw(kod = "educ_iste")
head(tmp)
## End(Not run)