am_series {africamonitor} | R Documentation |
Retrieve Series Table
Description
This function pulls information about the data series available in the database.
Usage
am_series(
dsid = NULL,
source.info = TRUE,
ordered = TRUE,
return.query = FALSE
)
Arguments
dsid |
character. (Optional) id's of datasources matching the 'DSID' column of the data sources table (retrieved using |
source.info |
logical. |
ordered |
logical. |
return.query |
logical. |
Details
The series table gives information about all of the time series in the database. Each series is given a unique code, and
has a label describing the series. Further information recorded are the minimum and maximum time coverage, and (optionally) a separate series source and url.
The default source.info = TRUE
adds the source, the frequency of the data (homogeneous within source), and the date when the source was last updated.
Value
A data.table
with information about the available series in the database.
See Also
am_countries
, am_sources
, am_data
, africamonitor
Examples
# By default returns all series with additional information
am_series()
# Raw series table
am_series(source.info = FALSE)
# Only series in the WEO
am_series("IMF_WEO")