Skip to contents

Creates mm23 metadata

Usage

get_mm23_metadata(rawfile)

Arguments

rawfile

A downloaded mm23.csv file. If missing will attempt to download from ONS.

Value

A tibble containing mm23 metadata

Examples

if (FALSE) { # \dontrun{
url <- "https://www.ons.gov.uk/file?uri=/economy/inflationandpriceindices/
datasets/consumerpriceindices/current/mm23.csv"
    tmp <- tempfile()
download.file(url, tmp)
rawfile <- tmp
get_mm23_metadata(rawfile)
} # }