predict.HoltWinters(stats)
predict.HoltWinters()所属R语言包:stats
Prediction Function for Fitted Holt-Winters Models
合身霍尔特 - 温特斯模型预测功能
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Computes predictions and prediction intervals for models fitted by the Holt-Winters method.
霍尔特 - 温特斯法拟合模型计算的预测和预报的时间间隔。
用法----------Usage----------
## S3 method for class 'HoltWinters'
predict(object, n.ahead=1, prediction.interval = FALSE,
level = 0.95, ...)
参数----------Arguments----------
参数:object
An object of class HoltWinters.
对象类HoltWinters。
参数:n.ahead
Number of future periods to predict.
预测今后一个时期的数量。
参数:prediction.interval
logical. If TRUE, the lower and upper bounds of the corresponding prediction intervals are computed.
逻辑。如果TRUE,计算相应的预测区间的上限和下限。
参数:level
Confidence level for the prediction interval.
预测区间的置信水平。
参数:...
arguments passed to or from other methods.
参数传递或其他方法。
值----------Value----------
A time series of the predicted values. If prediction intervals are requested, a multiple time series is returned with columns fit, lwr and upr for the predicted values and the lower and upper bounds respectively.
一个时间序列的预测值。如果预测区间的要求,多个时间序列列fit,lwr和upr预测值上限和下限分别返回。
作者(S)----------Author(s)----------
David Meyer <a href="mailtoavid.Meyer@wu.ac.at">David.Meyer@wu.ac.at</a>
参考文献----------References----------
Forecasting trends and seasonals by exponentially weighted moving averages, ONR Research Memorandum, Carnegie Institute of Technology 52.
Forecasting sales by exponentially weighted moving averages, Management Science 6, 324–342.
参见----------See Also----------
HoltWinters
HoltWinters
举例----------Examples----------
require(graphics)
m <- HoltWinters(co2)
p <- predict(m, 50, prediction.interval = TRUE)
plot(m, p)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|