I am trying to remove the seconds from a column of hours in POSIXct format:
#"2016-04-02 10:33:45 COT" "2016-04-02 22:19:24 COT"
#"2016-04-09 17:47:13 COT" "2016-04-13 16:56:23 COT"
x <- structure(c(1459589625, 1459631964, 1460220433, 1460562983),
class = c("POSIXct", "POSIXt"), tzone = "")
I am trying this but I am not seeing results:
y <- as.POSIXct(x, format = "%d/%m/%Y %H:%M")
you can use round.POSIXt:
This is what you have:
This is what you want:
Just use substring:
No you are giving
as.POSIXct
a wrong format...What about using format
If you want to round date to minutes you can do this: