https://github.com/cran/dse
Raw File
Tip revision: ab08892d097753cdf4449136af92b9e9fb89871c authored by Paul Gilbert on 01 December 2009, 00:00:00 UTC
version 2009.12-1
Tip revision: ab08892
horizonForecastsCompiled.Rd
\name{horizonForecastsCompiled}
\alias{horizonForecastsCompiled}
\alias{horizonForecastsCompiled.ARMA}
\alias{horizonForecastsCompiled.SS}

\title{Calculate forecasts at specified horizons}
\description{Calculate forecasts at specified horizons.}
\usage{
   horizonForecastsCompiled(obj, data, horizons=1:4,
	  discard.before=minimumStartupLag(obj))
   \method{horizonForecastsCompiled}{SS}(obj, data, horizons=1:4,
	 discard.before=minimumStartupLag(obj))
   \method{horizonForecastsCompiled}{ARMA}(obj, data, horizons=1:4,
	  discard.before=minimumStartupLag(obj))
}
\arguments{
    \item{obj}{see horizonForecasts.}
    \item{data}{see horizonForecasts.} 
    \item{horizons}{see horizonForecasts.}
    \item{discard.before}{see horizonForecasts.}
    \item{...}{see horizonForecasts.}
}
\value{See horizonForecasts.}
\details{Internal function not to be called by users. See horizonForecasts.}
\seealso{
\code{\link{horizonForecasts}}
}
\examples{
data("eg1.DSE.data.diff", package="dse")
model <- estVARXls(eg1.DSE.data.diff)
z <-  horizonForecasts(model, eg1.DSE.data.diff)
}
\concept{DSE}
\keyword{ts}

back to top