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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。