R语言
print.ts
位于 stats
包(package)。 说明
特别是对于与日历相关的时间序列对象,format
和 print
方法分别显示年、月和/或季度。
用法
## S3 method for class 'ts'
print(x, calendar, ...)
.preformat.ts(x, calendar, ...)
参数
x |
时间序列对象。 |
calendar |
启用/禁用打印时显示有关月份名称、季度名称或年份的信息。对于频率 4 或 12,默认值为 |
... |
细节
如果 calendar
为 false,则 "ts"
对象的 print
方法会打印标头(本质上是 tsp(x)
),然后打印 .preformat.ts(x, *)
的结果,该结果通常是构建有 rownames
的 matrix
从适用的日历时间开始。
例子
print(ts(1:10, frequency = 7, start = c(12, 2)), calendar = TRUE)
print(sunsp.1 <- window(sunspot.month, end=c(1756, 12)))
m <- .preformat.ts(sunsp.1) # a character matrix
也可以看看
相关用法
- R print.power.htest 假设检验和功效计算对象的打印方法
- R printCoefmat 打印系数矩阵
- R princomp 主成分分析
- R predict.smooth.spline 通过平滑样条拟合进行预测
- R predict 模型预测
- R profile.nls 分析 nls 对象的方法
- R predict.HoltWinters 拟合 Holt-Winters 模型的预测函数
- R proj 模型预测
- R predict.loess 预测黄土曲线或表面
- R preplot 绘图对象的预计算
- R prcomp 主成分分析
- R profile 分析模型的通用函数
- R prop.test 等比例或给定比例检验
- R profile.glm 分析 glm 对象的方法
- R prop.trend.test 检验比例趋势
- R predict.Arima ARIMA 的预测适合
- R predict.lm 线性模型拟合的预测方法
- R predict.nls 根据非线性最小二乘拟合进行预测
- R predict.glm GLM 拟合的预测方法
- R plot.stepfun 绘制阶跃函数
- R pairwise.t.test 成对 t 检验
- R plot.profile.nls 绘制 profile.nls 对象
- R plot.isoreg isoreg 对象的绘图方法
- R plot.HoltWinters HoltWinters 对象的绘图函数
- R ppoints 概率图的坐标
注:本文由纯净天空筛选整理自R-devel大神的英文原创作品 Printing and Formatting of Time-Series Objects。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。