Description Usage Arguments Details Value Author(s) See Also Examples
View source: R/rdb_dimensions.R
rdb_dimensions
downloads the list of dimensions (if they exist) for
available datasets of a selection of providers from
DBnomics.
1 2 3 4 5 6 7 8 |
provider_code |
Character string (default |
dataset_code |
Character string (default |
use_readLines |
Logical (default |
curl_config |
Named list (default |
simplify |
Logical (default |
... |
Additionals arguments. |
By default, the function returns a nested named list of data.table
s
containing the dimensions of datasets for providers from
DBnomics.
A nested named list of data.table
s or a named list of
data.table
s.
Sebastien Galais
rdb_providers
, rdb_last_updates
,
rdb_datasets
, rdb_series
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | ## Not run:
rdb_dimensions(provider_code = "IMF", dataset_code = "WEO:2019-10")
rdb_dimensions(provider_code = "IMF", dataset_code = "WEO:2019-10", simplify = TRUE)
rdb_dimensions(provider_code = "IMF")
# /!\ It is very long !
options(rdbnomics.progress_bar_dimensions = TRUE)
rdb_dimensions()
options(rdbnomics.progress_bar_dimensions = FALSE)
rdb_dimensions(
provider_code = "IMF", dataset_code = "WEO:2019-10",
use_readLines = TRUE
)
rdb_dimensions(
provider_code = "IMF", dataset_code = "WEO:2019-10",
curl_config = list(proxy = "<proxy>", proxyport = <port>)
)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.