forecastCovEstimatorsWRTdata: Calculate Forecast Cov of Estimators WRT Data

Description Usage Arguments Details Value See Also Examples

View source: R/dse2.R

Description

forecast covariance of estimated models with respect to a given sample

Usage

1
2
3
4
5
    forecastCovEstimatorsWRTdata(data, estimation.sample=NULL, 
                       compiled=.DSEflags()$COMPILED, discard.before=10,
                       horizons=1:12, zero=FALSE, trend=FALSE,quiet=FALSE,
                       estimation.methods=NULL)
    is.forecastCovEstimatorsWRTdata(obj)

Arguments

data

an object of class TSdata.

estimation.methods

a list as used by estimateModels.

discard.before

an integer indicating the number of points in the beginning of forecasts to discard for calculating covariances.

zero

if TRUE then forecastCov is also calculated for a forecast of zero.

trend

if TRUE then forecastCov is also calculated for a forecast of a linear trend.

estimation.sample

an integer indicating the number of points in the sample to use for estimation. If it is NULL the whole sample is used.

horizons

horizons for which forecast covariance should be calculated.

quiet

if TRUE then estimation information is not printed.

compiled

a logical indicating if the compiled version of the code should be used. (FALSE would typically only be used for debugging.)

obj

an object.

Details

Calculate the forecasts cov of models estimated from data with estimation methods indicated by estimation.methods (see estimateModels). estimation.sample is an integer indicating the number of points in the sample to use for estimation. If it is NULL the whole sample is used.

Value

A list with the forecast covariance for supplied models on the given sample. This is in the element forecastCov of the result. Other elements contain information in the arguments.

See Also

outOfSample.forecastCovEstimatorsWRTdata, estimateModels

Examples

1
2
3
data("eg1.DSE.data.diff", package="dse")
z <- forecastCovEstimatorsWRTdata(eg1.DSE.data.diff, 
    estimation.methods=list(estVARXls=list(max.lag=4)))

dse documentation built on March 4, 2020, 3:01 a.m.