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

diffusion object, produced using diffusion.

h

Forecast horizon.

...

Unused argument.

Value

Returns an object of class diffusion, which contains:

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

diffusion.

Examples

 fit <- diffusion(tsChicken[, 2])
 fit <- predict(fit, 20)
 plot(fit)


[Package diffusion version 0.4.0 Index]