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
Remove the setup.py in favor of a pyproject.toml. Old setup.py may have been showing depreciation warnings when installing from source. Thanks to a contribution by mstoelzle
area_between_two_curves now correctly calculates the area of four points that form a triangle (where two of the four points are the same). Thanks to a contribution by mcnick in PR35. Note that this change may result in different area values from previous versions. Cases where this will happen is if one curve had a perfectly straight line between three points, or if one curve had the exact same data point twice.
similaritymeasures.pcm now produces different values! This was done to better follow the original algorithm. To get the same results from previous versions, set norm_seg_length=True. What this option does is scale each segment length by the maximum values of the curve (borrowed from the curve_length_measure). This scaling should not be needed with the PCM method because both curves are always scaled initially.
Fix docstring documentation for returns in similaritymeasures.dtw and similaritymeasures.curve_length_measure