I see that Pandas does not allow duplicate time series indexes ( https://github.com/pydata/pandas/issues/643 ), but will be added soon. I am wondering if there is a good way to apply a rolling window to a dataset with duplicate times using a tag / column with multiple indices.
Basically, I have csv of unordered events that consist of epochal, hierarchical tags (tag1, tag2) and time. A small sample:
epochTimeMS,event,tag,timeTakenMS 1331782842801,event1,tag1,16 1331782841535,event1,tag2,1278 1331782842801,event1,tag1,17 1331782842381,event2,tag1,436
What I want to do is build and scale the graph with various ms windows, by the tag event and event +. It seems like this should be done in Pandas, but not sure if I will have to wait until the time series indexes are repeated first. Any thoughts on hacking this now?
python matplotlib pandas
Aaron Mar 18 2018-12-18T00: 00Z
source share