dates.RdCreate objects which represent dates or times.
dates(x, ...)
times(x, ...)An object of class dates or times, depending of the
function called.
These functions return objects inheriting from dates and times,
respectively. They call chron() if x does not belong to
any of the chronological classes.
dts <- dates(c("02/27/92", "02/27/92", "01/14/92",
"02/28/92", "02/01/92"))
dts
#> [1] 02/27/92 02/27/92 01/14/92 02/28/92 02/01/92
# [1] 02/27/92 02/27/92 01/14/92 02/28/92 02/01/92
class(dts)
#> [1] "dates" "times"
x <- chron(dates. = c("02/27/92", "02/27/92", "01/14/92", "02/28/92"),
times. = c("23:03:20", "22:29:56", "01:03:30", "18:21:03"))
dates(x)
#> [1] 02/27/92 02/27/92 01/14/92 02/28/92
# [1] 02/27/92 02/27/92 01/14/92 02/28/92