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