format.ti: Convert Time Index or Jul to Character

Description Usage Arguments Details Value Note See Also Examples

View source: R/ti.R

Description

format formats a jul or time index object for printing. as.character for a jul or ti object is essentially just an alias for format.

Usage

1
2
3
4
5
6
7
8
## S3 method for class 'ti'
format(x, ..., tz = "")
## S3 method for class 'jul'
format(x, ...)
## S3 method for class 'ti'
as.character(x, ...)
## S3 method for class 'jul'
as.character(x, ...)

Arguments

x

a jul or ti (time index) object

tz

A timezone specification to be used for the conversion if x has an intraday frequency. System-specific, but "" is the current time zone, and "GMT" is UTC.

...

other args passed on to format.POSIXlt.

Details

The as.character methods do nothing but call the corresponding format methods. x is converted to a POSIXlt object and then format.POSIXlt takes over.

Value

a character vector representing x

Note

format.POSIXlt has been modified to understand two additional format symbols in addition to those documented in link{strftime}: "%q" in the format string is replaced with the quarter number (1 thru 4) and "%N" is replaced with the first letter of the month name.

See Also

format.POSIXlt, strftime

Examples

1
2
format(today() + 0:9, "%x")
as.character(jul(today()))

tis documentation built on Sept. 29, 2021, 1:06 a.m.