FetchTimeSeriesWithRevisions {MacrobondAPI} | R Documentation |
Download one or more series with revisions from the database.
seriesName |
The name of the series or a list of series names. |
The result is a list of TimeSeriesWithRevisions
objects in the same order as requested. The elements in the list are named with the names of the series.
This method is only available if you run Macrobond app 1.23 or later and have a Data Scientist license.
FetchOneTimeSeriesWithRevisions
# Get the series for US GDP and CPI show when they were last revised seriesUs <- FetchTimeSeriesWithRevisions(c("usgdp", "uscpi")) show(getTimeOfLastRevision(seriesUs$usgdp)) show(getTimeOfLastRevision(seriesUs$uscpi))