My data is:
>>> ts = pd.TimeSeries(data,indexconv) >>> tsgroup = ts.resample(\'t\',how=\'sum\') >>> tsgroup 2014-11-08 10:30:00
You can smooth out your data with moving averages as well, effectively applying a low-pass filter to your data. Pandas supports this with the rolling() method.
rolling()