Last observation: août 2026 (N = 35)
First observation: janv. 1945 (N = 6)
Last data update: 23 sept. 2026, 21:35
Last compile: 23 sept. 2026, 21:47
CBPOL_M |>
left_join(REF_AREA, by = "REF_AREA") |>
group_by(REF_AREA, Ref_area) |>
summarise(Nobs = n()) |>
arrange(-Nobs) |>
mutate(Flag = gsub(" ", "-", str_to_lower(Ref_area)),
Flag = paste0('<img src="../../icon/flag/vsmall/', Flag, '.png" alt="Flag">')) |>
select(Flag, everything()) %>%
{if (is_html_output()) datatable(., filter = 'top', rownames = F, escape = F) else .}CBPOL_M |>
left_join(FREQ, by = "FREQ") |>
group_by(FREQ, Freq) |>
summarise(Nobs = n()) |>
arrange(-Nobs) %>%
{if (is_html_output()) print_table(.) else .}| FREQ | Freq | Nobs |
|---|---|---|
| M | Monthly | 25043 |
CBPOL_M |>
filter(REF_AREA %in% c("HU"),
date >= as.Date("2000-01-01")) |>
ggplot() + geom_line(aes(x = date, y = OBS_VALUE/100)) +
theme_minimal() + xlab("") + ylab("") +
scale_x_date(breaks = seq(1940, 2100, 5) |> paste0("-01-01") |> as.Date(),
labels = date_format("%Y")) +
scale_y_continuous(breaks = 0.01*seq(0, 10000, 1),
labels = percent_format(accuracy = 1)) +
scale_color_manual(values = viridis(4)[1:3]) +
theme(legend.position = c(0.8, 0.80),
legend.title = element_blank())
CBPOL_M |>
filter(REF_AREA %in% c("HU"),
date >= as.Date("2010-01-01")) |>
ggplot() + geom_line(aes(x = date, y = OBS_VALUE/100)) +
theme_minimal() + xlab("") + ylab("") +
scale_x_date(breaks = seq(1940, 2100, 1) |> paste0("-01-01") |> as.Date(),
labels = date_format("%Y")) +
scale_y_continuous(breaks = 0.01*seq(0, 10000, 1),
labels = percent_format(accuracy = 1)) +
scale_color_manual(values = viridis(4)[1:3]) +
theme(legend.position = c(0.8, 0.80),
legend.title = element_blank())
CBPOL_M |>
filter(REF_AREA %in% c("PL"),
date >= as.Date("2000-01-01")) |>
ggplot() + geom_line(aes(x = date, y = OBS_VALUE/100)) +
theme_minimal() + xlab("") + ylab("") +
scale_x_date(breaks = seq(1940, 2100, 5) |> paste0("-01-01") |> as.Date(),
labels = date_format("%Y")) +
scale_y_continuous(breaks = 0.01*seq(0, 10000, 1),
labels = percent_format(accuracy = 1)) +
scale_color_manual(values = viridis(4)[1:3]) +
theme(legend.position = c(0.8, 0.80),
legend.title = element_blank())
CBPOL_M |>
filter(REF_AREA %in% c("PL"),
date >= as.Date("2010-01-01")) |>
ggplot() + geom_line(aes(x = date, y = OBS_VALUE/100)) +
theme_minimal() + xlab("") + ylab("") +
scale_x_date(breaks = seq(1940, 2100, 1) |> paste0("-01-01") |> as.Date(),
labels = date_format("%Y")) +
scale_y_continuous(breaks = 0.01*seq(0, 10000, 1),
labels = percent_format(accuracy = 1)) +
scale_color_manual(values = viridis(4)[1:3]) +
theme(legend.position = c(0.8, 0.80),
legend.title = element_blank())
CBPOL_M |>
filter(REF_AREA %in% c("BR"),
date >= as.Date("2000-01-01")) |>
ggplot() + geom_line(aes(x = date, y = OBS_VALUE/100)) +
theme_minimal() + xlab("") + ylab("") +
scale_x_date(breaks = seq(1940, 2100, 5) |> paste0("-01-01") |> as.Date(),
labels = date_format("%Y")) +
scale_y_continuous(breaks = 0.01*seq(0, 10000, 1),
labels = percent_format(accuracy = 1)) +
scale_color_manual(values = viridis(4)[1:3]) +
theme(legend.position = c(0.8, 0.80),
legend.title = element_blank())
CBPOL_M |>
filter(REF_AREA %in% c("BR"),
date >= as.Date("2010-01-01")) |>
ggplot() + geom_line(aes(x = date, y = OBS_VALUE/100)) +
theme_minimal() + xlab("") + ylab("") +
scale_x_date(breaks = seq(1940, 2100, 1) |> paste0("-01-01") |> as.Date(),
labels = date_format("%Y")) +
scale_y_continuous(breaks = 0.01*seq(0, 10000, 1),
labels = percent_format(accuracy = 1)) +
scale_color_manual(values = viridis(4)[1:3]) +
theme(legend.position = c(0.8, 0.80),
legend.title = element_blank())
CBPOL_M |>
filter(REF_AREA %in% c("IS")) |>
ggplot() + geom_line(aes(x = date, y = OBS_VALUE/100)) +
theme_minimal() + xlab("") + ylab("") +
scale_x_date(breaks = seq(1940, 2100, 5) |> paste0("-01-01") |> as.Date(),
labels = date_format("%Y")) +
scale_y_continuous(breaks = 0.01*seq(0, 10000, 1),
labels = percent_format(accuracy = 1)) +
scale_color_manual(values = viridis(4)[1:3]) +
theme(legend.position = c(0.8, 0.80),
legend.title = element_blank())
CBPOL_M |>
filter(REF_AREA %in% c("IS"),
date >= as.Date("2014-01-01")) |>
ggplot() + geom_line(aes(x = date, y = OBS_VALUE/100)) +
theme_minimal() + xlab("") + ylab("") +
scale_x_date(breaks = seq(1940, 2100, 1) |> paste0("-01-01") |> as.Date(),
labels = date_format("%Y")) +
scale_y_continuous(breaks = 0.01*seq(0, 10000, 1),
labels = percent_format(accuracy = 1)) +
scale_color_manual(values = viridis(4)[1:3]) +
theme(legend.position = c(0.8, 0.80),
legend.title = element_blank())
CBPOL_M |>
filter(REF_AREA %in% c("NZ")) |>
ggplot() + geom_line(aes(x = date, y = OBS_VALUE/100)) +
theme_minimal() + xlab("") + ylab("") +
scale_x_date(breaks = seq(1940, 2100, 5) |> paste0("-01-01") |> as.Date(),
labels = date_format("%Y")) +
scale_y_continuous(breaks = 0.01*seq(0, 10000, 1),
labels = percent_format(accuracy = 1)) +
scale_color_manual(values = viridis(4)[1:3]) +
theme(legend.position = c(0.8, 0.80),
legend.title = element_blank())
CBPOL_M |>
filter(REF_AREA %in% c("NZ"),
date >= as.Date("1980-01-01"),
date <= as.Date("2000-01-01")) |>
ggplot() + geom_line(aes(x = date, y = OBS_VALUE/100)) +
theme_minimal() + xlab("") + ylab("") +
scale_x_date(breaks = seq(1940, 2100, 1) |> paste0("-01-01") |> as.Date(),
labels = date_format("%Y")) +
scale_y_continuous(breaks = 0.01*seq(0, 10000, 1),
labels = percent_format(accuracy = 1)) +
scale_color_manual(values = viridis(4)[1:3]) +
theme(legend.position = c(0.8, 0.80),
legend.title = element_blank())
CBPOL_M |>
filter(REF_AREA %in% c("NZ"),
date >= as.Date("2014-01-01")) |>
ggplot() + geom_line(aes(x = date, y = OBS_VALUE/100)) +
theme_minimal() + xlab("") + ylab("") +
scale_x_date(breaks = seq(1940, 2100, 1) |> paste0("-01-01") |> as.Date(),
labels = date_format("%Y")) +
scale_y_continuous(breaks = 0.01*seq(0, 10000, 1),
labels = percent_format(accuracy = 1)) +
scale_color_manual(values = viridis(4)[1:3]) +
theme(legend.position = c(0.8, 0.80),
legend.title = element_blank())
CBPOL_M |>
filter(REF_AREA %in% c("IL")) |>
ggplot() + geom_line(aes(x = date, y = OBS_VALUE/100)) +
theme_minimal() + xlab("") + ylab("") +
scale_x_date(breaks = seq(1940, 2100, 5) |> paste0("-01-01") |> as.Date(),
labels = date_format("%Y")) +
scale_y_continuous(breaks = 0.01*seq(0, 10000, 1),
labels = percent_format(accuracy = 1)) +
scale_color_manual(values = viridis(4)[1:3]) +
theme(legend.position = c(0.8, 0.80),
legend.title = element_blank())
CBPOL_M |>
filter(REF_AREA %in% c("IL")) |>
ggplot() + geom_line(aes(x = date, y = OBS_VALUE/100)) +
theme_minimal() + xlab("") + ylab("") +
scale_x_date(breaks = seq(1940, 2100, 5) |> paste0("-01-01") |> as.Date(),
labels = date_format("%Y")) +
scale_y_continuous(breaks = 0.01*seq(0, 10000, 1),
labels = percent_format(accuracy = 1)) +
scale_color_manual(values = viridis(4)[1:3]) +
theme(legend.position = c(0.8, 0.80),
legend.title = element_blank()) +
geom_rect(data = data_frame(start = as.Date("2005-05-01"),
end = as.Date("2013-06-30")),
aes(xmin = start, xmax = end, ymin = -Inf, ymax = +Inf),
fill = viridis(4)[4], alpha = 0.2)
CBPOL_M |>
filter(REF_AREA %in% c("IL"),
date >= as.Date("2004-01-01")) |>
ggplot() + geom_line(aes(x = date, y = OBS_VALUE/100)) +
theme_minimal() + xlab("") + ylab("") +
scale_x_date(breaks = seq(1940, 2100, 2) |> paste0("-01-01") |> as.Date(),
labels = date_format("%Y")) +
scale_y_continuous(breaks = 0.01*seq(0, 10000, 1),
labels = percent_format(accuracy = 1)) +
scale_color_manual(values = viridis(4)[1:3]) +
theme(legend.position = c(0.8, 0.80),
legend.title = element_blank())
CBPOL_M |>
filter(REF_AREA %in% c("IL"),
date >= as.Date("2004-01-01")) |>
ggplot() + geom_line(aes(x = date, y = OBS_VALUE/100)) +
theme_minimal() + xlab("") + ylab("") +
scale_x_date(breaks = seq(1940, 2100, 2) |> paste0("-01-01") |> as.Date(),
labels = date_format("%Y")) +
scale_y_continuous(breaks = 0.01*seq(0, 10000, 1),
labels = percent_format(accuracy = 1)) +
scale_color_manual(values = viridis(4)[1:3]) +
theme(legend.position = c(0.8, 0.80),
legend.title = element_blank()) +
geom_rect(data = data_frame(start = as.Date("2005-05-01"),
end = as.Date("2013-06-30")),
aes(xmin = start, xmax = end, ymin = -Inf, ymax = +Inf),
fill = viridis(4)[4], alpha = 0.2)
CBPOL_M |>
filter(REF_AREA %in% c("US", "JP", "XM"),
date >= as.Date("1980-01-01")) |>
left_join(REF_AREA, by = "REF_AREA") |>
mutate(Ref_area = ifelse(REF_AREA == "XM", "Europe", Ref_area)) |>
add_flag_color("Ref_area") |>
ggplot() + theme_minimal() + xlab("") + ylab("Policy Rates (%)") +
geom_line(aes(x = date, y = OBS_VALUE/100, color = color)) +
scale_color_identity() + add_flags +
scale_x_date(breaks = seq(1940, 2100, 5) |> paste0("-01-01") |> as.Date(),
labels = date_format("%Y")) +
scale_y_continuous(breaks = 0.01*seq(-5, 30, 1),
labels = percent_format(accuracy = 1)) +
theme(legend.position = c(0.8, 0.80),
legend.title = element_blank())
CBPOL_M |>
filter(REF_AREA %in% c("US", "JP", "XM"),
date >= as.Date("1985-01-01")) |>
left_join(REF_AREA, by = "REF_AREA") |>
mutate(Ref_area = ifelse(REF_AREA == "XM", "Europe", Ref_area)) |>
add_flag_color("Ref_area") |>
ggplot() + theme_minimal() + xlab("") + ylab("Policy Rates (%)") +
geom_line(aes(x = date, y = OBS_VALUE/100, color = color)) +
scale_color_identity() + add_flags +
scale_x_date(breaks = seq(1940, 2100, 5) |> paste0("-01-01") |> as.Date(),
labels = date_format("%Y")) +
scale_y_continuous(breaks = 0.01*seq(-5, 30, 1),
labels = percent_format(accuracy = 1)) +
theme(legend.position = c(0.8, 0.80),
legend.title = element_blank())
CBPOL_M |>
filter(REF_AREA %in% c("CH", "DK", "GB")) |>
left_join(REF_AREA, by = "REF_AREA") |>
add_flag_color("Ref_area") |>
ggplot() + theme_minimal() + xlab("") + ylab("Policy Rates (%)") +
geom_line(aes(x = date, y = OBS_VALUE/100, color = color)) +
scale_color_identity() + add_flags +
scale_x_date(breaks = seq(1940, 2100, 5) |> paste0("-01-01") |> as.Date(),
labels = date_format("%Y")) +
scale_y_continuous(breaks = 0.01*seq(-5, 30, 1),
labels = percent_format(accuracy = 1)) +
theme(legend.position = c(0.8, 0.80),
legend.title = element_blank())
CBPOL_M |>
filter(REF_AREA %in% c("IN")) |>
left_join(REF_AREA, by = "REF_AREA") |>
add_flag_color("Ref_area") |>
ggplot() + theme_minimal() + xlab("") + ylab("Policy Rates (%)") +
geom_line(aes(x = date, y = OBS_VALUE/100, color = color)) +
scale_color_identity() + add_flags +
scale_x_date(breaks = seq(1940, 2100, 5) |> paste0("-01-01") |> as.Date(),
labels = date_format("%Y")) +
scale_y_continuous(breaks = 0.01*seq(-5, 30, 1),
labels = percent_format(accuracy = 1)) +
theme(legend.position = c(0.8, 0.80),
legend.title = element_blank())
CBPOL_M |>
filter(REF_AREA %in% c("SE", "IN", "US")) |>
left_join(REF_AREA, by = "REF_AREA") |>
add_flag_color("Ref_area") |>
ggplot() + theme_minimal() + xlab("") + ylab("Policy Rates (%)") +
geom_line(aes(x = date, y = OBS_VALUE/100, color = color)) +
scale_color_identity() + add_flags +
scale_x_date(breaks = seq(1940, 2100, 5) |> paste0("-01-01") |> as.Date(),
labels = date_format("%Y")) +
scale_y_continuous(breaks = 0.01*seq(-5, 30, 1),
labels = percent_format(accuracy = 1)) +
theme(legend.position = c(0.8, 0.80),
legend.title = element_blank())
CBPOL_M |>
filter(REF_AREA %in% c("SE", "IN", "US"),
date >= as.Date("1993-01-01")) |>
left_join(REF_AREA, by = "REF_AREA") |>
add_flag_color("Ref_area") |>
ggplot() + theme_minimal() + xlab("") + ylab("Policy Rates (%)") +
geom_line(aes(x = date, y = OBS_VALUE/100, color = color)) +
scale_color_identity() + add_flags +
scale_x_date(breaks = seq(1940, 2100, 5) |> paste0("-01-01") |> as.Date(),
labels = date_format("%Y")) +
scale_y_continuous(breaks = 0.01*seq(-5, 30, 1),
labels = percent_format(accuracy = 1)) +
theme(legend.position = c(0.8, 0.80),
legend.title = element_blank())
CBPOL_M |>
filter(REF_AREA %in% c("JP", "CA", "AU")) |>
left_join(REF_AREA, by = "REF_AREA") |>
add_flag_color("Ref_area") |>
ggplot() + theme_minimal() + xlab("") + ylab("Policy Rates (%)") +
geom_line(aes(x = date, y = OBS_VALUE/100, color = color)) +
scale_color_identity() + add_flags +
scale_x_date(breaks = seq(1940, 2100, 5) |> paste0("-01-01") |> as.Date(),
labels = date_format("%Y")) +
scale_y_continuous(breaks = 0.01*seq(-5, 100, 5),
labels = percent_format(accuracy = 1)) +
theme(legend.position = c(0.8, 0.80),
legend.title = element_blank())
CBPOL_M |>
filter(REF_AREA %in% c("ZA", "NZ", "NO")) |>
left_join(REF_AREA, by = "REF_AREA") |>
add_flag_color("Ref_area") |>
ggplot() + theme_minimal() + xlab("") + ylab("Policy Rates (%)") +
geom_line(aes(x = date, y = OBS_VALUE/100, color = color)) +
scale_color_identity() + add_flags +
scale_x_date(breaks = seq(1940, 2100, 5) |> paste0("-01-01") |> as.Date(),
labels = date_format("%Y")) +
scale_y_continuous(breaks = 0.01*seq(-5, 100, 5),
labels = percent_format(accuracy = 1)) +
theme(legend.position = c(0.8, 0.80),
legend.title = element_blank())
CBPOL_M |>
filter(REF_AREA %in% c("BR", "PH", "HU")) |>
left_join(REF_AREA, by = "REF_AREA") |>
add_flag_color("Ref_area") |>
ggplot() + theme_minimal() + xlab("") + ylab("Policy Rates (%)") +
geom_line(aes(x = date, y = OBS_VALUE/100, color = color)) +
scale_color_identity() + add_flags +
scale_x_date(breaks = seq(1940, 2100, 5) |> paste0("-01-01") |> as.Date(),
labels = date_format("%Y")) +
scale_y_continuous(breaks = 0.01*seq(-5, 100, 5),
labels = percent_format(accuracy = 1),
limits = c(-0.05, 0.40)) +
theme(legend.position = c(0.8, 0.80),
legend.title = element_blank())
CBPOL_M |>
filter(REF_AREA %in% c("BR", "PH", "HU"),
date >= as.Date("1998-01-01")) |>
left_join(REF_AREA, by = "REF_AREA") |>
add_flag_color("Ref_area") |>
ggplot() + theme_minimal() + xlab("") + ylab("Policy Rates (%)") +
geom_line(aes(x = date, y = OBS_VALUE/100, color = color)) +
scale_color_identity() + add_flags +
scale_x_date(breaks = seq(1940, 2100, 5) |> paste0("-01-01") |> as.Date(),
labels = date_format("%Y")) +
scale_y_continuous(breaks = 0.01*seq(-5, 100, 5),
labels = percent_format(accuracy = 1),
limits = c(-0.05, 0.40)) +
theme(legend.position = c(0.8, 0.80),
legend.title = element_blank())
CBPOL_M |>
filter(REF_AREA %in% c("RU", "PL", "AR")) |>
left_join(REF_AREA, by = "REF_AREA") |>
add_flag_color("Ref_area") |>
ggplot() + theme_minimal() + xlab("") + ylab("Policy Rates (%)") +
geom_line(aes(x = date, y = OBS_VALUE/100, color = color)) +
scale_color_identity() + add_flags +
scale_x_date(breaks = seq(1940, 2100, 5) |> paste0("-01-01") |> as.Date(),
labels = date_format("%Y")) +
scale_y_continuous(breaks = 0.01*seq(0, 10000, 50),
labels = percent_format(accuracy = 1)) +
theme(legend.position = c(0.8, 0.80),
legend.title = element_blank())
CBPOL_M |>
filter(REF_AREA %in% c("IL", "CO", "HR")) |>
left_join(REF_AREA, by = "REF_AREA") |>
add_flag_color("Ref_area") |>
ggplot() + theme_minimal() + xlab("") + ylab("Policy Rates (%)") +
geom_line(aes(x = date, y = OBS_VALUE/100, color = color)) +
scale_color_identity() + add_flags +
scale_x_date(breaks = seq(1940, 2100, 5) |> paste0("-01-01") |> as.Date(),
labels = date_format("%Y")) +
scale_y_continuous(breaks = 0.01*seq(0, 10000, 50),
labels = percent_format(accuracy = 1)) +
theme(legend.position = c(0.8, 0.80),
legend.title = element_blank())
CBPOL_M |>
filter(REF_AREA %in% c("MY", "CZ", "CN")) |>
left_join(REF_AREA, by = "REF_AREA") |>
add_flag_color("Ref_area") |>
ggplot() + theme_minimal() + xlab("") + ylab("Policy Rates (%)") +
geom_line(aes(x = date, y = OBS_VALUE/100, color = color)) +
scale_color_identity() + add_flags +
scale_x_date(breaks = seq(1940, 2100, 5) |> paste0("-01-01") |> as.Date(),
labels = date_format("%Y")) +
scale_y_continuous(breaks = 0.01*seq(0, 10000, 1),
labels = percent_format(accuracy = 1)) +
theme(legend.position = c(0.8, 0.80),
legend.title = element_blank())
CBPOL_M |>
filter(REF_AREA %in% c("RS", "CL", "IS")) |>
left_join(REF_AREA, by = "REF_AREA") |>
add_flag_color("Ref_area") |>
ggplot() + theme_minimal() + xlab("") + ylab("Policy Rates (%)") +
geom_line(aes(x = date, y = OBS_VALUE/100, color = color)) +
scale_color_identity() + add_flags +
scale_x_date(breaks = seq(1940, 2100, 5) |> paste0("-01-01") |> as.Date(),
labels = date_format("%Y")) +
scale_y_continuous(breaks = 0.01*seq(0, 10000, 5),
labels = percent_format(accuracy = 1)) +
theme(legend.position = c(0.8, 0.80),
legend.title = element_blank())
CBPOL_M |>
filter(REF_AREA %in% c("HK", "MX", "XM")) |>
left_join(REF_AREA, by = "REF_AREA") |>
mutate(Ref_area = ifelse(REF_AREA == "XM", "Europe", Ref_area)) |>
mutate(Ref_area = ifelse(REF_AREA == "HK", "Hong Kong", Ref_area)) |>
add_flag_color("Ref_area") |>
ggplot() + theme_minimal() + xlab("") + ylab("Policy Rates (%)") +
geom_line(aes(x = date, y = OBS_VALUE/100, color = color)) +
scale_color_identity() + add_flags +
scale_x_date(breaks = seq(1940, 2100, 5) |> paste0("-01-01") |> as.Date(),
labels = date_format("%Y")) +
scale_y_continuous(breaks = 0.01*seq(0, 10000, 5),
labels = percent_format(accuracy = 1)) +
theme(legend.position = c(0.8, 0.80),
legend.title = element_blank())
CBPOL_M |>
filter(REF_AREA %in% c("KR", "MK", "SA")) |>
left_join(REF_AREA, by = "REF_AREA") |>
add_flag_color("Ref_area") |>
ggplot() + theme_minimal() + xlab("") + ylab("Policy Rates (%)") +
geom_line(aes(x = date, y = OBS_VALUE/100, color = color)) +
scale_color_identity() + add_flags +
scale_x_date(breaks = seq(1940, 2100, 5) |> paste0("-01-01") |> as.Date(),
labels = date_format("%Y")) +
scale_y_continuous(breaks = 0.01*seq(0, 10000, 5),
labels = percent_format(accuracy = 1)) +
theme(legend.position = c(0.8, 0.80),
legend.title = element_blank())