R语言
Nile
位于 datasets
包(package)。 说明
1871-1970 年阿斯旺尼罗河年流量测量(以前的 Assuan
),在 中,“在 1898 年附近有明显的变化点”(Cobb(1978),表 1,第 249 页)。
用法
Nile
格式
长度为 100 的时间序列。
例子
require(stats); require(graphics)
par(mfrow = c(2, 2))
plot(Nile)
acf(Nile)
pacf(Nile)
ar(Nile) # selects order 2
cpgram(ar(Nile)$resid)
par(mfrow = c(1, 1))
arima(Nile, c(2, 0, 0))
## Now consider missing values, following Durbin & Koopman
NileNA <- Nile
NileNA[c(21:40, 61:80)] <- NA
arima(NileNA, c(2, 0, 0))
plot(NileNA)
pred <-
predict(arima(window(NileNA, 1871, 1890), c(2, 0, 0)), n.ahead = 20)
lines(pred$pred, lty = 3, col = "red")
lines(pred$pred + 2*pred$se, lty = 2, col = "blue")
lines(pred$pred - 2*pred$se, lty = 2, col = "blue")
pred <-
predict(arima(window(NileNA, 1871, 1930), c(2, 0, 0)), n.ahead = 20)
lines(pred$pred, lty = 3, col = "red")
lines(pred$pred + 2*pred$se, lty = 2, col = "blue")
lines(pred$pred - 2*pred$se, lty = 2, col = "blue")
## Structural time series models
par(mfrow = c(3, 1))
plot(Nile)
## local level model
(fit <- StructTS(Nile, type = "level"))
lines(fitted(fit), lty = 2) # contemporaneous smoothing
lines(tsSmooth(fit), lty = 2, col = 4) # fixed-interval smoothing
plot(residuals(fit)); abline(h = 0, lty = 3)
## local trend model
(fit2 <- StructTS(Nile, type = "trend")) ## constant trend fitted
pred <- predict(fit, n.ahead = 30)
## with 50% confidence interval
ts.plot(Nile, pred$pred,
pred$pred + 0.67*pred$se, pred$pred -0.67*pred$se)
## Now consider missing values
plot(NileNA)
(fit3 <- StructTS(NileNA, type = "level"))
lines(fitted(fit3), lty = 2)
lines(tsSmooth(fit3), lty = 3)
plot(residuals(fit3)); abline(h = 0, lty = 3)
来源
Durbin, J. 和 Koopman, S. J. (2001)。通过状态空间方法进行时间序列分析。牛津大学出版社。
参考
Balke, N. S. (1993). Detecting level shifts in time series. Journal of Business and Economic Statistics, 11, 81-92. doi:10.2307/1391308.
Cobb, G. W. (1978). The problem of the Nile: conditional solution to a change-point problem. Biometrika 65, 243-51. doi:10.2307/2335202.
相关用法
- R WorldPhones 世界电话
- R DNase DNase 的 Elisa 测定
- R ability.cov 能力和智力测试
- R UCBAdmissions 加州大学伯克利分校学生招生
- R Titanic 泰坦尼克号乘客的生还
- R HairEyeColor 统计学学生的头发和眼睛颜色
- R volcano 奥克兰芒加瓦乌火山地形信息
- R discoveries 每年重要发现的数量
- R USArrests 美国各州的暴力犯罪率
- R CO2 草植物的二氧化碳吸收
- R UKgas 英国季度天然气消耗量
- R chickwts 按饲料类型划分的鸡体重
- R BOD 生化需氧量
- R mtcars Motor Trend 汽车道路测试
- R attitude Chatterjee – 价格态度数据
- R ToothGrowth 维生素C对豚鼠牙齿生长的影响
- R BJsales 领先指标销售数据
- R rock 石油岩石样品的测量
- R warpbreaks 织造过程中纱线的断头数
- R longley 朗利的经济回归数据
- R quakes 斐济附近发生地震的地点
- R trees 黑樱桃树的直径、高度和体积
- R attenu Joyner-Boore 衰减数据
- R sleep 学生的睡眠数据
- R Theoph 茶碱的药代动力学
注:本文由纯净天空筛选整理自R-devel大神的英文原创作品 Flow of the River Nile。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。