predict.diffusion {diffusion} | R Documentation |
Predict future periods of a fitted diffusion curve.
Description
Calculates the values for h future periods of a fitted diffusion curve.
Usage
## S3 method for class 'diffusion'
predict(object, h = 10, ...)
Arguments
object |
|
h |
Forecast horizon. |
... |
Unused argument. |
Value
Returns an object of class diffusion
, which contains:
-
type
diffusion curve type used -
call
calls function fitted -
w
named vector of fitted parameters -
y
actuals -
fit
fitted values of model -
frc
forecasts for future periods. -
mse
insample Mean Squared Error -
prew
thew
of the previous generation -
pval
p-values forw
Note
This function populates the matrix frc of the diffusion
object used as input.
Author(s)
Oliver Schaer, info@oliverschaer.ch,
Nikoloas Kourentzes, nikoloas@kourentzes.com
See Also
Examples
fit <- diffusion(tsChicken[, 2])
fit <- predict(fit, 20)
plot(fit)
[Package diffusion version 0.4.0 Index]