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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。