I have a column "datetime" which have value as "899-12-30 07:00:00"
on checking the information I am getting.
> typeof(time_info$datetime)
[1] "double"
> class(time_info$datetime)
[1] "POSIXct" "POSIXt"
I want to extract just the time which is 0700 without seconds in this case. How can I do this ?