powered by
Extracts as numbers various time-of-day periods from a time vector.
hours(x) minutes(x) seconds(x) yeardays(x)
returns a numeric vector of hours, minutes, seconds, or year-days of x for the respective function.
x
Hours are integers between 0 and 23.
Minutes are integers between 0 and 59.
Seconds are numbers including the fractions of a second.
Yeardays are the day number of the year (a number between 1 and 366).
the timeDate object from which to extract periods.
timeDate
days, hms.
days
hms
x <- timeDate(c("1/1/1998 3:05:23.4", "5/10/2005 2:15:11.234 PM")) hours(x) minutes(x) seconds(x) yeardays(x)
Run the code above in your browser using DataLab