R语言
ts.union
位于 stats
包(package)。 说明
绑定具有共同频率的时间序列。 ts.union
与 NA
一起填充到总时间覆盖范围,ts.intersect
限制为所有系列覆盖的时间。
用法
ts.intersect(..., dframe = FALSE)
ts.union(..., dframe = FALSE)
参数
... |
两个或多个单变量或多变量时间序列,或可以强制为时间序列的对象。 |
dframe |
逻辑性; if |
细节
作为一种特殊情况,...
可以包含与当前时间序列的组合时间序列以及单行的时间序列长度相同的向量或矩阵。
值
如果 dframe
是 FALSE
,则为时间序列对象,否则为数据帧。
例子
ts.union(mdeaths, fdeaths)
cbind(mdeaths, fdeaths) # same as the previous line
ts.intersect(window(mdeaths, 1976), window(fdeaths, 1974, 1978))
sales1 <- ts.union(BJsales, lead = BJsales.lead)
ts.intersect(sales1, lead3 = lag(BJsales.lead, -3))
也可以看看
cbind
。
相关用法
- R ts.plot 绘制多个时间序列
- R tsdiag 时间序列拟合的诊断图
- R ts 时间序列对象
- R tsSmooth 对时间序列使用固定间隔平滑
- R ts-methods 时间序列对象的方法
- R tsp 类时间序列对象的 Tsp 属性
- R terms 示范条款
- R terms.object 术语对象的说明
- R termplot 绘制回归项
- R time 时间序列的采样次数
- R toeplitz 创建对称和非对称托普利茨矩阵
- R t.test 学生 t 检验
- R terms.formula 从公式构造术语对象
- 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-devel大神的英文原创作品 Bind Two or More Time Series。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。