Skip to content
Prev 336350 / 398503 Next

why is as.date function not working for me? (dd/mm/yyyy h:mm)

Because a Date object represents calendar dates, and calendar dates don't
have hours.

Use as.POSIXct() instead of as.Date()
(and spend a little more time with the documentation for as.Date)

-Don