nottem(datasets)
nottem()所属R语言包:datasets
Average Monthly Temperatures at Nottingham, 1920–1939
在诺丁汉,20世纪二三十年代的月平均温度
译者:生物统计家园网 机器人LoveR
描述----------Description----------
A time series object containing average air temperatures at Nottingham Castle in degrees Fahrenheit for 20 years.
一个时间序列对象,其中包含20年平均气温在诺丁汉城堡华氏度。
用法----------Usage----------
源----------Source----------
Anderson, O. D. (1976) Time Series Analysis and Forecasting: The Box-Jenkins approach. Butterworths. Series R.
安德森,外径(1976年)的时间序列分析与预测:箱詹金斯方法。巴特沃思。系列R。
举例----------Examples----------
## Not run: 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)))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|