当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


R nottem 诺丁汉平均每月气温,1920 年至 1939 年


R语言 nottem 位于 datasets 包(package)。

说明

包含诺丁汉城堡 20 年平均气温(华氏度)的时间序列对象。

用法

nottem

例子

require(stats); require(graphics)
nott <- window(nottem, end = c(1936,12))
fit <- arima(nott, order = c(1,0,0), list(order = c(2,1,0), period = 12))
nott.fore <- predict(fit, n.ahead = 36)
ts.plot(nott, nott.fore$pred, nott.fore$pred+2*nott.fore$se,
        nott.fore$pred-2*nott.fore$se, gpars = list(col = c(1,1,4,4)))

来源

Anderson, O. D. (1976) 时间序列分析和预测:Box-Jenkins 方法。巴特沃斯。 R系列

相关用法


注:本文由纯净天空筛选整理自R-devel大神的英文原创作品 Average Monthly Temperatures at Nottingham, 1920–1939。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。