timeDate
Objects
timeCalendar(m=<<see below>>, d=<<see below>>, y=<<see below>>, h=<<see below>>, min=<<see below>>, s=<<see below>>, ms=<<see below>>, format=<<see below>>, zone=<<see below>>)
options("time.out.format")
.
options("time.zone")
.
timeDate
object corresponding to the input.
If none of
m
,
d
,
y
,
h
,
min
,
s
, and
ms
are supplied,
this function returns a time vector of length zero. If more than
one is supplied, they must all have compatible lengths; shorter
inputs will be used cyclically to make up the maximum length, but
they must be even multiples.
The arguments represent the date and time of day
in the given time zone, with missing ones supplied to give a
time of midnight, January 1, 1960.
Leap seconds will not cause
NA
values, but may cause times of day to
be off by a second in days containing them.
timeCalendar(m = c(3, 4, 5), d = c(12, 15, 7), y = c(1998, 1997, 2004), format = "%b. %d, %Y") timeCalendar(h = c(9, 14), min = c(15, 23), format = "%I:%02M %p")