print.ts | R Documentation |
Notably for calendar related time series objects,
format
and print
methods showing years,
months and or quarters respectively.
## S3 method for class 'ts' print(x, calendar, ...) .preformat.ts(x, calendar, ...)
x |
a time series object. |
calendar |
enable/disable the display of information about
month names, quarter names or year when printing. The default is
|
... |
additional arguments to |
The print
method for "ts"
objects prints a
header (basically of tsp(x)
), if calendar
is
false, and then prints the result of .preformat.ts(x, *)
, which
is typically a matrix
with rownames
built
from the calendar times where applicable.
print
,
ts
.
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
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.