We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08db92d commit becbfa4Copy full SHA for becbfa4
examples/statistics/customized_violin_demo.py
@@ -27,7 +27,7 @@ def adjacent_values(vals):
27
uav = np.clip(uav, q3, vals[-1])
28
# lower adjacent values
29
lav = q1 - iqr * 1.5
30
- lav = np.clip(lav, q1, vals[0])
+ lav = np.clip(lav, vals[0], q1)
31
return [lav, uav]
32
33
0 commit comments