I am using pandas.DataFrame.resample
to resample random events to 1 hour intervals and am seeing very stochastic results that don't seem to go away if I increase the interval to 2 or 4 hours. It makes me wonder whether Pandas has any type of method for generating a smoothed density kernel like a Gaussian kernel density method with an adjustable bandwidth to control smoothing. I'm not seeing anything in the documentation, but thought I would post here before posting on the developer list server since that is their preference. Scikit-Learn has precisely the Gaussian kernel density function that I want, so I will try to make use of it, but it would be a fantastic addition to Pandas.
Any help is greatly appreciated!
hourly[0][344:468].plot()
I have now found that this is option is available in
pandas.stats.moments.ewma
and it works quite nicely. Here are the results: