Private
Public Access
1
0

catch angle histogram bug fix

This commit is contained in:
Sander Roosendaal
2021-08-26 08:32:22 +02:00
parent bed08eb9e8
commit 7112754055

View File

@@ -2153,6 +2153,10 @@ def interactive_histoall(theworkouts,histoparam,includereststrokes,
# throw out nans
histopwr = histopwr[~np.isinf(histopwr)]
if histoparam == 'catch':
histopwr = histopwr[histopwr < yaxminima[histoparam]]
histopwr = histopwr[histopwr > yaxmaxima[histoparam]]
else:
histopwr = histopwr[histopwr > yaxminima[histoparam]]
histopwr = histopwr[histopwr < yaxmaxima[histoparam]]