Code
datasets |>
filter(code %in% list_main_datasets) |>
mutate(html = paste0('<a target=_blank href=', code, '.html > html </a>')) %>%
{if (is_html_output()) datatable(., filter = 'top', rownames = F, escape = F) else .}
Data - rba
Last data update: 04 sept. 2026, 01:29
Last compile: 04 sept. 2026, 01:41
datasets |>
filter(code %in% list_main_datasets) |>
mutate(html = paste0('<a target=_blank href=', code, '.html > html </a>')) %>%
{if (is_html_output()) datatable(., filter = 'top', rownames = F, escape = F) else .}datasets |>
filter(code %in% list_main_datasets) |>
mutate(html = paste0("[html](", code, '.html)')) %>%
{if (is_html_output()) print_table(.) else .}| code | name | html |
|---|---|---|
| G1 | Consumer price inflation | [html](G1.html) |
| G2 | Consumer price inflation – expenditure groups | [html](G2.html) |
| G3 | Inflation expectations | [html](G3.html) |
datasets |>
filter(!(code %in% list_main_datasets)) %>%
{if (is_html_output()) datatable(., filter = 'top', rownames = F, escape = F) else .}