Skip to content
Prev 322241 / 398500 Next

Time and Date formatting

Hello,

See if any of the following will do.


DATE <- "14/07/2010"
TIME <-  "20:21"
paste(DATE, TIME)
as.POSIXct(paste(DATE, TIME), format = "%d/%m/%Y %H:%M")


Hope this helps,

Rui Barradas

Em 23-04-2013 19:46, Ayyappa Chaturvedula escreveu: