R语言
time
位于 stats
包(package)。 说明
time
创建对时间序列进行采样的时间向量。
cycle
给出每个观察周期中的位置。
frequency
返回每单位时间的样本数,deltat
返回观察之间的时间间隔(请参阅 ts
)。
用法
time(x, ...)
## Default S3 method:
time(x, offset = 0, ts.eps = getOption("ts.eps"), ...)
cycle(x, ...)
frequency(x, ...)
deltat(x, ...)
参数
x |
单变量或多变量时间序列,或者向量或矩阵。 |
offset |
可用于指示在时间单位内何时进行采样。 |
ts.eps |
时间序列比较容差,在 |
... |
未来方法的额外参数。 |
细节
这些都是通用函数,将使用 x
的 tsp
属性(如果存在)。 time
和 cycle
具有类 ts
的方法,可将结果强制传递给该类。
time()
round()
s 值接近整数,即接近于ts.eps
, 自从R4.3.0。对于以前的行为,您可以使用以下方式调用它ts.eps = 0
.
例子
require(graphics)
cycle(presidents)
# a simple series plot
plot(as.vector(time(presidents)), as.vector(presidents), type = "l")
参考
Becker, R. A., Chambers, J. M. and Wilks, A. R. (1988) The New S Language. Wadsworth & Brooks/Cole.
也可以看看
date
表示时钟时间,system.time
表示 CPU 使用情况。
相关用法
- R tsdiag 时间序列拟合的诊断图
- R terms 示范条款
- R ts.plot 绘制多个时间序列
- R ts 时间序列对象
- R terms.object 术语对象的说明
- R tsSmooth 对时间序列使用固定间隔平滑
- R termplot 绘制回归项
- R ts-methods 时间序列对象的方法
- R toeplitz 创建对称和非对称托普利茨矩阵
- R ts.union 绑定两个或多个时间序列
- R tsp 类时间序列对象的 Tsp 属性
- 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大神的英文原创作品 Sampling Times of Time Series。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。