tidy_abs {readabs} | R Documentation |
Tidy ABS time series data.
Description
Tidy ABS time series data.
Usage
tidy_abs(df, metadata = TRUE)
Arguments
df |
A data frame containing ABS time series data
that has been extracted using |
metadata |
logical. If |
Value
data frame (tibble) in long format.
Examples
# First extract the data from the local spreadsheet
## Not run:
wpi <- extract_abs_sheets("634501.xls")
## End(Not run)
# Then tidy the data extracted from the spreadsheet. Note that
# \code{extract_abs_sheets()} returns a list of data frames, so we need to
# subset the list.
## Not run:
tidy_wpi <- tidy_abs(wpi[[1]])
## End(Not run)
[Package readabs version 0.4.16 Index]