當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


R print.ts 時間序列對象的打印和格式化


R語言 print.ts 位於 stats 包(package)。

說明

特別是對於與日曆相關的時間序列對象,formatprint 方法分別顯示年、月和/或季度。

用法

## S3 method for class 'ts'
print(x, calendar, ...)
.preformat.ts(x, calendar, ...)

參數

x

時間序列對象。

calendar

啟用/禁用打印時顯示有關月份名稱、季度名稱或年份的信息。對於頻率 4 或 12,默認值為 TRUE,否則為 FALSE

...

print(或format方法)的附加參數。

細節

如果 calendar 為 false,則 "ts" 對象的 print 方法會打印標頭(本質上是 tsp(x) ),然後打印 .preformat.ts(x, *) 的結果,該結果通常是構建有 rownamesmatrix從適用的日曆時間開始。

例子

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

也可以看看

printts

相關用法


注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 Printing and Formatting of Time-Series Objects。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。