This was the original data.
ID     TIME     BYTES
1     13:00     10
2     13:02     30
3     13:03     40
4     13:02     50
5     13:03     70
I got the following data using ax = server_logs.groupby('TIME')['REPLY_SIZE'].sum()
.
ID     TIME     BYTES
1     13:00     10
2     13:02     80
3     13:03     110
How do I seperate the the TIME and BYTES into two different lists after doing ? It doesn't seem to separate using time = ax[0]
.
ps:I'd like to apply k means clustering using sklearn on this data after.