rdb_providers {rdbnomics} | R Documentation |
Download list of DBnomics providers.
Description
rdb_providers
downloads the list of providers from
DBnomics.
Usage
rdb_providers(
code = FALSE,
use_readLines = getOption("rdbnomics.use_readLines"),
curl_config = getOption("rdbnomics.curl_config")
)
Arguments
code |
Logical (default |
use_readLines |
Logical (default |
curl_config |
Named list (default |
Details
By default, the function returns a data.table
containing the list of providers from
DBnomics with additional informations such as
the region, the website, etc.
Value
A data.table
or a vector.
Author(s)
Sebastien Galais
See Also
rdb_last_updates
, rdb_datasets
,
rdb_dimensions
, rdb_series
Examples
## Not run:
rdb_providers()
rdb_providers(code = TRUE)
rdb_providers(use_readLines = TRUE)
rdb_providers(curl_config = list(proxy = "<proxy>", proxyport = <port>))
## End(Not run)