Description Usage Arguments Examples
Mostly used to add EU estimates corrections to queries but can be used on its own
1 2 3 4 5 6 7 | get_eu_estimates(
time_window,
code_filter = NULL,
flow_filter = "eu",
code_type,
groupby
)
|
time_window |
like "MonthId gt 202000 and MonthId lt 202100" which is everything from 2020 or "MonthId gt 201908 and MonthId lt 202009" last 12 month up to end of August. It is taken automatically from the query |
code_filter |
like "02" only works with HS as there is no breakdown for SITC on the API. It is taken automatically from the query |
flow_filter |
choose from "export" "import" or "EU" |
code_type |
'hs' or 'sitc' populated automatically in code |
groupby |
takes a vector of keywords the full range is c("country", "year", "month", "hs2"). Disaggregation for EU estimates is not available at a lower level or at SITC level. Taken automatically from function. |
1 2 3 | get_eu_estimates(time_window = "MonthId gt 201906 and MonthId lt 202008", code_type = 'hs', groupby = c("country", "year", "HS2"))
get_eu_estimates(time_window = "MonthId gt 201906 and MonthId lt 202008", code_filter='02', code_type = 'hs', groupby = c("month", "HS2"))
get_eu_estimates(time_window = "MonthId gt 202008", code_type = 'sitc', groupby = c("country", "year", "month"))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.