@@ -114,20 +114,20 @@ def get_lower_lows(data: np.array, order=5, K=2):
114114
115115 Parameters:
116116
117- order (optional): int - How many points on each
118- side to use for the comparison to
117+ order (optional): int - How many points on each
118+ side to use for the comparison to
119119 consider ``comparator(n, n+x)`` to be True.
120- K (optional): int - How many consecutive lows need
121- to be lower. This means that for a given low,
122- the next K lows must be lower than the k lows
123- before. So say K=2, then the low at index i must
120+ K (optional): int - How many consecutive lows need
121+ to be lower. This means that for a given low,
122+ the next K lows must be lower than the k lows
123+ before. So say K=2, then the low at index i must
124124 be lower than the low at index i-2 and i-1. If this
125125 condition is met, then the low at index i is considered a
126126 lower low. If the condition is not met, then the low at
127127 index i is not considered a lower low.
128128
129129 Returns:
130- extrema: list - A list of lists containing the indices of the
130+ extrema: list - A list of lists containing the indices of the
131131 consecutive lower lows in the data array.
132132 '''
133133 # Get lows
0 commit comments