In my data frame I want to add 5hrs and 30minutes to the Time column and then group the Time field into 2 hours(0-2,3-6.. like this till 21-23). Here is the data frame below:
Time Date Device
7:12:20 12/14/2016 Tablet
8:57:34 12/12/2016 Desktop
18:48:36 12/1/2016 Desktop
4:27:34 12/16/2016 Desktop
5:57:48 12/28/2016 Desktop
10:28:31 12/20/2016 Desktop
10:28:32 12/20/2016 Desktop
This would be one way to handle your case. Your data is called
mydf
here. First, you can create a date object usingpaste()
andas.POSIXct()
. Since you want to add 2 hours and 30 minutes, I added 60 (sec) * 150 (min) to the date object and createdfoo
. Then, I extracted the hour-minute-second part fromfoo
and created a new column calledTime2
. The last job is to create a group variable withcut()
. I do not know how you want to label the groups, so I named them as group 1, group 2, and so on.DATA