I eventually want to make box plots with the data below. But I cannot get them to bin the timepoints (in minutes). I am importing a csv file with headers and the file contains the below data.
I have tried
bindata <- cut(data1["Time"])
bindata <- cut(as.numeric(data1["Time"]))
bindata <- cut("Time")
bindata <- cut(Time)
3