I am trying to pre-process timestamp in my data into four categories of the day.
This means i need to convert object data type to categories namely
Morning for 00:00:00 to 11:59:59
Afternoon for 12:00:00 to 15:59:59
Evening for 16:00:00 to 19:59:59
Night for 20:00:00 to 23:59:59
my timestamp data looks like
transaction timestamp
08:26:00
08:26:00
08:26:00
08:26:00
12:26:00
12:45:00
16:26:00
16:28:00
20:28:00
20:34:00
I expect the output to of the above mentioned column to be
time of day
Morning
Morning
Morning
Morning
Afternoon
Afternoon
Evening
Evening
Night
Night
How shall i clean this type of data and convert it to just 4 categories?