Retrieve data for given units from BDL with specified format.
Arguments
- unitId
A single 12 character NUTS id code or vector of multiple unit id codes. If multiple unit codes are used, some columns are not available. Use
search_units
orget_units
to find unit id code.- varId
A vector of variable Id's.Use
search_variables
orget_variables
to find variable id code.- year
A vector of years. If
NULL
(default) returns data for all available years.- type
A type of variables returned, "code" (default), "label"
- aggregateId
An aggregate id. Use
get_aggregates
for more info.- lang
A language of returned data, "pl" (default), "en"
- ...
Other arguments passed on to
GET
. For example a proxy parameters, see details.
Details
Data to retrieve from
The
BDL Web Services can be filtered with arguments. To get JSON data from specified
directory with custom filters use get_request
directly.
To use a proxy to connect, a use_proxy
can be
passed to GET
. For example
get_request(id, filters,
config = httr::use_proxy(url, port, username, password))
.