I have a df that looks like,
ID | Time_A | Time_B
B 5.0 3.5
C 3.0 4.0
A 2.5 1.0
I want to create a new column that classifies Time_B column into Bins of 0-5, 5-10, 10-15, 15-20, and 20 - anything larger. Where none of the bins have overlapping values, ( where 5 does not exist in 5-10 if it exists in 0-5.
Thanks!