monthplot
位於 stats
包(package)。 說明
這些函數繪製時間序列的季節性(或其他)子序列。對於每個季節(或其他類別),都會繪製一個時間序列。
用法
monthplot(x, ...)
## S3 method for class 'stl'
monthplot(x, labels = NULL, ylab = choice, choice = "seasonal",
...)
## S3 method for class 'StructTS'
monthplot(x, labels = NULL, ylab = choice, choice = "sea", ...)
## S3 method for class 'ts'
monthplot(x, labels = NULL, times = time(x), phase = cycle(x),
ylab = deparse1(substitute(x)), ...)
## Default S3 method:
monthplot(x, labels = 1L:12L,
ylab = deparse1(substitute(x)),
times = seq_along(x),
phase = (times - 1L)%%length(labels) + 1L, base = mean,
axes = TRUE, type = c("l", "h"), box = TRUE,
add = FALSE,
col = par("col"), lty = par("lty"), lwd = par("lwd"),
col.base = col, lty.base = lty, lwd.base = lwd, ...)
參數
x |
時間序列或相關對象。 |
labels |
用於每個‘season’的標簽。 |
ylab |
y 標簽。 |
times |
每次觀察的時間。 |
phase |
每個‘season’的指示器。 |
base |
用於子係列參考線的函數。 |
choice |
|
... |
要傳遞給默認方法或圖形參數的參數。 |
axes |
是否應該繪製軸(如果 |
type |
情節類型。默認是用線連接點, |
box |
是否應該繪製一個框(如果 |
add |
因此應該隻添加現有的情節。 |
col, lty, lwd |
該係列的圖形參數。 |
col.base, lty.base, lwd.base |
用於參考線的線段的圖形參數。 |
細節
這些函數從時間序列中提取子序列並將它們全部繪製在一幀中。 ts
、 stl
和 StructTS
方法使用內部記錄的頻率以及開始和結束時間來設置比例和季節。默認方法假設觀察結果以 12 為一組(盡管可以更改)。
如果未給出 labels
但給出了 phase
,則 labels
默認為 phase
的唯一值。如果兩者都給出,則假定 phase
值是 labels
數組的索引,即它們應該在 1 到 length(labels)
的範圍內。
值
執行這些函數是為了在當前圖形窗口上繪製季節性子係列圖。
例子
require(graphics)
## The CO2 data
fit <- stl(log(co2), s.window = 20, t.window = 20)
plot(fit)
op <- par(mfrow = c(2,2))
monthplot(co2, ylab = "data", cex.axis = 0.8)
monthplot(fit, choice = "seasonal", cex.axis = 0.8)
monthplot(fit, choice = "trend", cex.axis = 0.8)
monthplot(fit, choice = "remainder", type = "h", cex.axis = 0.8)
par(op)
## The CO2 data, grouped quarterly
quarter <- (cycle(co2) - 1) %/% 3
monthplot(co2, phase = quarter)
## see also JohnsonJohnson
作者
Duncan Murdoch
參考
Becker, R. A., Chambers, J. M. and Wilks, A. R. (1988) The New S Language. Wadsworth & Brooks/Cole.
也可以看看
相關用法
- R model.matrix 構建設計矩陣
- R mood.test 情緒二樣本量表檢驗
- R model.tables 計算 Aov 模型擬合的結果表
- R model.extract 從模型框架中提取組件
- R model.frame 從公式或擬合中提取模型框架
- R medpolish 矩陣的中值波蘭(穩健雙向分解)
- R mcnemar.test 計數數據的麥克尼馬爾卡方檢驗
- R mantelhaen.test 計數數據的 Cochran-Mantel-Haenszel 卡方檢驗
- R mahalanobis 馬哈拉諾比斯距離
- R manova 多變量方差分析
- R make.link 為 GLM 家庭創建鏈接
- R median 中值
- R makepredictcall 用於安全預測的實用函數
- R mauchly.test 莫奇利球形度檢驗
- R mad 中值絕對偏差
- R stlmethods STL 對象的方法
- R naprint 調整缺失值
- R summary.nls 總結非線性最小二乘模型擬合
- R summary.manova 多元方差分析的匯總方法
- R formula 模型公式
- R nls.control 控製 nls 中的迭代
- R aggregate 計算數據子集的匯總統計
- R deriv 簡單表達式的符號和算法導數
- R kruskal.test Kruskal-Wallis 秩和檢驗
- R quade.test 四方測試
注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 Plot a Seasonal or other Subseries from a Time Series。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。