You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The optimized function is included, thanks to @blu3r4y
It might still be a useless feature, but you never know and that is why we have a feature selection ;-)
tsfresh/tsfresh/feature_extraction/feature_calculators.py
Line 528 in 00884fb
The result is equivalent to (
x_last - x_first) / (n - 1)
.If you do want this as a feature,
(x[-1] - x[0])/(len(x) - 1)
instead.The text was updated successfully, but these errors were encountered: