Consumer price inflation time series - MM23

Data - ons

Info

# **Last data update**: 01 aoû 2026, 21:10. **Last compile**: 15 aoû 2026, 15:30

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))