I have a dataframe of DateTime (index) and a sampling of power usage:
DateTime Usage
01-Jan-17 12am 10
01-Jan-17 3am 5
01-Jan-17 6am 15
01-Jan-17 9am 40
01-Jan-17 12pm 60
01-Jan-17 3pm 62
01-Jan-17 6pm 45
01-Jan-17 9pm 18
02-Jan-17 12am 11
02-Jan-17 3am 4
02-Jan-17 6am 17
02-Jan-17 9am 37
02-Jan-17 12pm 64
02-Jan-17 3pm 68
02-Jan-17 6pm 41
02-Jan-17 9pm 16
In reality, this series is much longer. I am trying to compare day-over-day time periods, such that I can look at the daily-seasonality of the time series. Is there a way in panda's to split the data such that you can compare these time series? I'd imagine the resulting DataFrame would look something like:
Time 1-Jan 2-Jan
12am 10 11
3am 5 4
6am 15 17
9am 40 37
12pm 60 64
3pm 62 68
6pm 45 41
9pm 18 16
Thanks!

