Consumer price inflation time series - MM23

Data - ons

freq

Code
MM23 %>%
  group_by(freq, Frequency) %>%
  summarise(Nobs = n()) %>%
  print_table_conditional
freq Frequency Nobs
A Annual 229877
M Monthly 721023
Q Quarterly 315660

title

Code
MM23 %>%
  group_by(title, Title) %>%
  summarise(Nobs = n()) %>%
  print_table_conditional

Rents

Code
MM23 %>%
  filter(title %in% c("CZXD", "L5P8"),
         !is.na(value),
         freq == "M") %>%
  ggplot + geom_line(aes(x = period, y = value))

CZXD

Code
MM23 %>%
  filter(title %in% c("DOBP"),
         !is.na(value),
         freq == "M") %>%
  ggplot + geom_line(aes(x = period, y = value, color = title))

CHZQ, CRQO

Code
MM23 %>%
  filter(title %in% c("CRQO", "D7BT"),
         !is.na(value),
         freq == "M") %>%
  ggplot + geom_line(aes(x = period, y = value, color = Title))