Box.test
位于 stats
包(package)。 说明
计算 Box-Pierce 或 Ljung-Box 检验统计量,以检查给定时间序列中独立性的原假设。这些有时称为‘portmanteau’ 测试。
用法
Box.test(x, lag = 1, type = c("Box-Pierce", "Ljung-Box"), fitdf = 0)
参数
x |
数值向量或单变量时间序列。 |
lag |
统计数据将基于 |
type |
要执行的测试:使用部分匹配。 |
fitdf |
如果 |
细节
这些测试有时应用于 ARMA(p, q)
拟合的残差,在这种情况下,参考文献建议通过设置 fitdf = p+q
获得更好的零假设分布近似值,当然前提是 lag > fitdf
。
值
类"htest"
的列表包含以下组件:
statistic |
检验统计量的值。 |
parameter |
检验统计量的近似卡方分布的自由度(考虑 |
p.value |
检验的 p 值。 |
method |
指示执行哪种类型的测试的字符串。 |
data.name |
给出数据名称的字符串。 |
注意
不处理缺失值。
例子
x <- rnorm (100)
Box.test (x, lag = 1)
Box.test (x, lag = 1, type = "Ljung")
作者
A. Trapletti
参考
Box, G. E. P. and Pierce, D. A. (1970), Distribution of residual correlations in autoregressive-integrated moving average time series models. Journal of the American Statistical Association, 65, 1509-1526. doi:10.2307/2284333.
Ljung, G. M. and Box, G. E. P. (1978), On a measure of lack of fit in time series models. Biometrika, 65, 297-303. doi:10.2307/2335207.
Harvey, A. C. (1993) Time Series Models. 2nd Edition, Harvester Wheatsheaf, NY, pp. 44, 45.
相关用法
- R Binomial 二项式分布
- R Beta 贝塔分布
- R stlmethods STL 对象的方法
- R medpolish 矩阵的中值波兰(稳健双向分解)
- 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 decompose 移动平均线的经典季节性分解
- R plot.stepfun 绘制阶跃函数
- R alias 查找模型中的别名(依赖项)
- R qqnorm 分位数-分位数图
- R eff.aovlist 多层方差分析的计算效率
- R pairwise.t.test 成对 t 检验
- R loglin 拟合对数线性模型
- R predict.smooth.spline 通过平滑样条拟合进行预测
- R bartlett.test 方差齐性的 Bartlett 检验
- R influence.measures 回归删除诊断
- R loess.control 设置黄土参数
- R Normal 正态分布
注:本文由纯净天空筛选整理自R-devel大神的英文原创作品 Box-Pierce and Ljung-Box Tests。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。