R语言
decompose
位于 stats
包(package)。 说明
使用移动平均线将时间序列分解为季节性、趋势和不规则成分。处理加法或乘法季节性成分。
用法
decompose(x, type = c("additive", "multiplicative"), filter = NULL)
参数
x |
一个时间序列。 |
type |
季节性成分的类型。可以缩写。 |
filter |
逆时间顺序的滤波器系数向量(对于 AR 或 MA 系数),用于滤除季节性分量。如果 |
细节
使用的加法模型是:
使用的乘法模型是:
该函数首先使用移动平均值确定趋势分量(如果 filter
是 NULL
,则使用具有相等权重的对称窗口),并将其从时间序列中删除。然后,通过对所有时期的每个时间单位进行平均来计算季节性数字。然后将季节性数据居中。最后,通过从原始时间序列中删除趋势和季节数据(根据需要回收)来确定误差分量。
仅当 x
覆盖整数个完整周期时,此方法才有效。
值
类 "decomposed.ts"
的对象,具有以下组件:
x |
原创系列。 |
seasonal |
季节性成分(即重复的季节性数字)。 |
figure |
仅估计季节性数字。 |
trend |
趋势成分。 |
random |
剩下的部分。 |
type |
|
注意
函数 stl
提供了更复杂的分解。
例子
require(graphics)
m <- decompose(co2)
m$figure
plot(m)
## example taken from Kendall/Stuart
x <- c(-50, 175, 149, 214, 247, 237, 225, 329, 729, 809,
530, 489, 540, 457, 195, 176, 337, 239, 128, 102, 232, 429, 3,
98, 43, -141, -77, -13, 125, 361, -45, 184)
x <- ts(x, start = c(1951, 1), end = c(1958, 4), frequency = 4)
m <- decompose(x)
## seasonal figure: 6.25, 8.62, -8.84, -6.03
round(decompose(x)$figure / 10, 2)
作者
David Meyer David.Meyer@wu.ac.at
参考
M. Kendall and A. Stuart (1983) The Advanced Theory of Statistics, Vol.3, Griffin. pp. 410-414.
也可以看看
相关用法
- R deriv 简单表达式的符号和算法导数
- R dendrapply 将函数应用于树状图的所有节点
- R dendrogram 一般树结构
- R deviance 模型偏差
- R density 核密度估计
- R delete.response 修改术语对象
- R df.residual 剩余自由度
- R dummy.coef 提取原始编码中的系数
- R dist 距离矩阵计算
- R diffinv 离散积分:差分的逆
- R stlmethods STL 对象的方法
- R medpolish 矩阵的中值波兰(稳健双向分解)
- R naprint 调整缺失值
- R summary.nls 总结非线性最小二乘模型拟合
- R summary.manova 多元方差分析的汇总方法
- R formula 模型公式
- R nls.control 控制 nls 中的迭代
- R aggregate 计算数据子集的汇总统计
- R kruskal.test Kruskal-Wallis 秩和检验
- R quade.test 四方测试
- R plot.stepfun 绘制阶跃函数
- R alias 查找模型中的别名(依赖项)
- R qqnorm 分位数-分位数图
- R eff.aovlist 多层方差分析的计算效率
- R pairwise.t.test 成对 t 检验
注:本文由纯净天空筛选整理自R-devel大神的英文原创作品 Classical Seasonal Decomposition by Moving Averages。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。