SeriesExpression-class {MacrobondAPI} | R Documentation |
Information about series in a unified series request.
You create an instance through a call to addSeries
.
The default values of the properties are:
MissingValueMethod | "Auto" |
ToHigherFrequencyMethod | "Auto" |
ToLowerFrequencyMethod | "Auto" |
PartialPeriodsMethod | "None" |
signature(m = "SeriesExpression")
: Get the method used for filling in any missing values. It will be one of the values in the list TimeSeriesMissingValueMethod
.
signature(m = "SeriesExpression", method = "TimeSeriesMissingValueMethodClass")
: Set the method used for filling in missing values. It should be one of the values in the list TimeSeriesMissingValueMethod
.
signature(m = "SeriesExpression", method = "character")
: Set the method used for filling in missing values. It should be one of the names of the list TimeSeriesMissingValueMethod
.
signature(object = "SeriesExpression")
: Get the name of the series.
signature(object = "SeriesExpression", name = "character")
: Set the name of the series.
signature(m = "SeriesExpression")
: Get the method used for converting to a higher frequency. It will be one of the values in the list TimeSeriesToHigherFrequencyMethod
.
signature(m = "SeriesExpression", method = "TimeSeriesToHigherFrequencyMethodClass")
: Set the method used for converting to a higher frequency. It should be one of the values in the list TimeSeriesToHigherFrequencyMethod
.
signature(m = "SeriesExpression", method = "character")
: Set the method used for converting to a higher frequency. It will be be one of the names of the list TimeSeriesToHigherFrequencyMethod
.
signature(m = "SeriesExpression")
: Get the method used for converting to a lower frequency. It will be one of the values in the list TimeSeriesToLowerFrequencyMethod
.
signature(m = "SeriesExpression", method = "TimeSeriesToLowerFrequencyMethodClass")
: Set the method used for converting to a lower frequency. It should be one of the values in the list TimeSeriesToLowerFrequencyMethod
.
signature(m = "SeriesExpression", method = "character")
: Set the method used for converting to a lower frequency. It will be one of the names of the list TimeSeriesToLowerFrequencyMethod
.
signature(m = "SeriesExpression")
: Get the method used for converting partial periods to a lower frequency. It will be one of the values in the list TimeSeriesPartialPeriodsMethod
. Introduced in MB 1.21.
signature(m = "SeriesExpression", method = "TimeSeriesPartialPeriodsMethodClass")
: Set the method used for converting partial periods to a lower frequency. It should be one of the values in the list TimeSeriesPartialPeriodsMethod
. Introduced in MB 1.21.
signature(m = "SeriesExpression", method = "character")
: Set the method used for converting partial periods to a lower frequency. It will be one of the names of the list TimeSeriesPartialPeriodsMethod
. Introduced in MB 1.21.
signature(object = "SeriesExpression")
: Show a summary of the time series expression.
SeriesRequest
addSeries
CreateUnifiedTimeSeriesRequest
FetchTimeSeries
seriesRequest <- CreateUnifiedTimeSeriesRequest() setFrequency(seriesRequest, "Monthly") addSeries(seriesRequest, "usgdp") seriesExpressionCpi <- addSeries(seriesRequest, "uscpi") setMissingValueMethod(seriesExpressionCpi, "None") twoSeries <- FetchTimeSeries(seriesRequest)