I have a python dataframe that has a series of unique values against date time objects
Instead of having these time stamps, I want to show the unique values over time, by having the index by in intervals of say 15 minutes.
How would one go about achieving this with Pandas?
Using example given
VsDF['VS_ID'].resample('15M').apply(pd.Series.unique)
I am getting the array of values. I actually just want a count of how many values exist at a specific time interval, as the values increase numerically over time regardless.
Thanks in advance,