Open saheel1115 opened 1 year ago
Update:
I am currently using this solution to achieve what I want:
segment_end_idxs
fc = FeatureCollection(
MultipleFeatureDescriptors(
functions=[np.max, np.mean],
series_names=["Sales"],
windows="700days",
strides="7days",
)
)
fc.calculate( data=[df], include_final_window=True, segment_end_idxs=df.index[1:] )
Is there a better solution? 😃
Hi folks,
Firstly, grateful to you for creating this library. It has crucial features missing in other libraries and I love it so far.
I seek your help in figuring out:
Output should be something like this:
Thanks in advance, Saheel.