Inflation
NZ CPI, % year-on-year · OECD
View code ▾
library(eolas); library(ggplot2)
eolas_get_oecd("nz_cpi", start = "2000-01-01") |>
ggplot(aes(date, value)) + geom_line(colour = "#3b82f6")
Unemployment
rate, % · OECD
View code ▾
eolas_get_oecd("nz_unemployment", start = "2000-01-01") |>
ggplot(aes(date, value)) + geom_line(colour = "#10b981")
GDP growth
% year-on-year · OECD
View code ▾
eolas_get_oecd("nz_gdp_growth", start = "2000-01-01") |>
ggplot(aes(date, value)) + geom_line(colour = "#f59e0b")
House prices
price index · RBNZ
View code ▾
library(dplyr)
library(ggplot2)
eolas_get_rbnz("rbnz_m10_housing") |>
ggplot(aes(date, house_price_index_hpi)) +
geom_line(colour = "#3b82f6")