Is there a way i can ignore scale while calculating consensus motifs? #491
Replies: 2 comments 6 replies
-
You can disable the individual z-Normalization of the subsequences with the parameter normalize=False. In your case, try to detrend your timeseries beforehand and then run stump with normalize=False. |
Beta Was this translation helpful? Give feedback.
-
@0tist If I understand your question correctly, it sounds like you have multiple time series with different magnitudes but that you suspect that the shape of the subsequence(s) might be similar (even if one subsequence is scaled up, say, 5x as large). By default, STUMPY applies a "z-normalization", which essentially helps to ignore the differences in magnitude between different subsequences. In other words, the scale of each subsequence is normalized first before the distance is computed between the subsequences. However, if you set |
Beta Was this translation helpful? Give feedback.
-
Hi, I have a graph which is monotonically increasing. I wish to compare the sub-sequences to determine how it's growing, but i want to ignore the scale, as in i want to compare the sub-sequences such that they are in the same range, both the query and the reference sub-sequence
Beta Was this translation helpful? Give feedback.
All reactions