| describe {eurodata} | R Documentation |
Describe a given Eurostat dataset on the basis of information from Metabase
Description
Describe a given Eurostat dataset on the basis of information from Metabase
Usage
describe(
EurostatDatasetCode,
import_labels = !wide,
wide = FALSE,
import_dim_labels = TRUE
)
Arguments
EurostatDatasetCode |
A string with Eurostat dataset code name, e.g. |
import_labels |
Boolean: should labels for the codes inside dimensions be imported. Default: if |
wide |
Boolean: should each dimension be compressed to one row and all values within each dimension to a single,
comma-separated string. Default: |
import_dim_labels |
Boolean: should the dimensions (e.g. |
Value
A data.table with columns Dim_name, Dim_name_label (if import_dim_labels=TRUE),
either Dim_val (if wide=FALSE) or Dim_values (if wide=TRUE),
Dim_val_label (if import_labels=TRUE), and a column with a name = EurostatDatasetCode with all
its values = TRUE.
Examples
## Not run:
describe('nama_10_gdp')
## End(Not run)