R語言
AirPassengers
位於 datasets
包(package)。 說明
經典的 Box & Jenkins 航空公司數據。 1949 年至 1960 年每月國際航空旅客總數。
用法
AirPassengers
格式
每月時間序列,以千為單位。
例子
## Not run:
## These are quite slow and so not run by example(AirPassengers)
## The classic 'airline model', by full ML
(fit <- arima(log10(AirPassengers), c(0, 1, 1),
seasonal = list(order = c(0, 1, 1), period = 12)))
update(fit, method = "CSS")
update(fit, x = window(log10(AirPassengers), start = 1954))
pred <- predict(fit, n.ahead = 24)
tl <- pred$pred - 1.96 * pred$se
tu <- pred$pred + 1.96 * pred$se
ts.plot(AirPassengers, 10^tl, 10^tu, log = "y", lty = c(1, 2, 2))
## full ML fit is the same if the series is reversed, CSS fit is not
ap0 <- rev(log10(AirPassengers))
attributes(ap0) <- attributes(AirPassengers)
arima(ap0, c(0, 1, 1), seasonal = list(order = c(0, 1, 1), period = 12))
arima(ap0, c(0, 1, 1), seasonal = list(order = c(0, 1, 1), period = 12),
method = "CSS")
## Structural Time Series
ap <- log10(AirPassengers) - 2
(fit <- StructTS(ap, type = "BSM"))
par(mfrow = c(1, 2))
plot(cbind(ap, fitted(fit)), plot.type = "single")
plot(cbind(ap, tsSmooth(fit)), plot.type = "single")
## End(Not run)
來源
Box, G. E. P.、Jenkins, G. M. 和 Reinsel, G. C. (1976) 時間序列分析、預測和控製。第三版。 Holden-Day。 G 係列。
相關用法
- R WorldPhones 世界電話
- R DNase DNase 的 Elisa 測定
- R ability.cov 能力和智力測試
- R UCBAdmissions 加州大學伯克利分校學生招生
- R Nile 尼羅河的流量
- 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-devel大神的英文原創作品 Monthly Airline Passenger Numbers 1949-1960。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。