getTimeSeriesTable {RJSDMX} | R Documentation |
get time series and return a data.frame
Description
Extract a list of time series identified by the parameters provided in input, and return a data.frame as result.
getTimeSeriesTable(provider, id, start, end, gregorianTime)
Usage
getTimeSeriesTable(provider, id, start='', end='', gregorianTime=F)
Arguments
id |
identifier of the time series |
provider |
the name of the provider |
end |
the end time - optional |
start |
the start time - optional |
gregorianTime |
set to true to have all daily dates - optional |
Examples
## Not run:
# SDMX V2
## get single time series:
my_ts=getTimeSeriesTable('ECB',id='EXR.A.USD.EUR.SP00.A')
## get monthly and annual frequency:
my_ts=getTimeSeriesTable('ECB',id='EXR.A+M.USD.EUR.SP00.A')
## get all available frequencies:
my_ts=getTimeSeriesTable('ECB',id='EXR..USD.EUR.SP00.A')
## End(Not run)
[Package RJSDMX version 3.3-0 Index]