This question already has an answer here:
- Round a POSIX date and time (posixct) to a date relative to a timezone 1 answer
I have data in the format
time <- c("16:53", "10:57", "11:58")
etc
I would like to create a new column where each of these times is rounded to the nearest hour. I cannot seem to get the POSIX command to work for me.
as.character(format(data2$time, "%H:%M"))
Error in format.default(structure(as.character(x), names = names(x), dim = dim(x), : invalid 'trim' argument
Let alone use the round command. Can anyone advise?