- cat_no
ABS catalogue number, as a string, including the extension.
For example, "6202.0".
- tables
numeric. Time series tables in cat_no`` to download and extract. Default is "all", which will read all time series in cat_no. Specify tablesto download and import specific tables(s) - eg.tables = 1ortables = c(1, 5)`.
- series_id
(optional) character. Supply an ABS unique time series
identifier (such as "A2325807L") to get only that series.
This is an alternative to specifying cat_no.
- path
Local directory in which downloaded ABS time series
spreadsheets should be stored. By default, path takes the value set in the
environment variable "R_READABS_PATH". If this variable is not set,
any files downloaded by read_abs() will be stored in a temporary directory
(tempdir()). See Details below for
more information.
- metadata
logical. If TRUE (the default), a tidy data frame including
ABS metadata (series name, table name, etc.) is included in the output. If
FALSE, metadata is dropped.
- show_progress_bars
TRUE by default. If set to FALSE, progress bars
will not be shown when ABS spreadsheets are downloading.
- retain_files
when TRUE (the default), the spreadsheets downloaded
from the ABS website will be saved in the directory specified with path.
If set to FALSE, the files will be stored in a temporary directory.
- check_local
If TRUE, the default, local fst files are used,
if present.
- release_date
Either "latest" or a string coercible to a date, such as
"2022-02-01". If "latest", the latest release of the requested data will
be returned. If a date, (eg. "2022-02-01") read_abs() will
attempt to download the data from that month's release. See Details.
- ...
Arguments to read_abs_series() are passed to read_abs().