Skip to content

Commit 8535bce

Browse files
committed
Update plotter.py
refline when float_contrast=False should honor reflines_kwargs
1 parent e6cd4b8 commit 8535bce

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

dabest/plotter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -697,7 +697,7 @@ def EffectSizeDataFramePlotter(EffectSizeDataFrame, **plot_kwargs):
697697
else:
698698
contrast_ylim_high, contrast_ylim_low = contrast_axes_ylim
699699
if contrast_ylim_low < 0 < contrast_ylim_high:
700-
contrast_axes.axhline(y=0, lw=0.75, color=ytick_color)
700+
contrast_axes.axhline(y=0, **reflines_kwargs)
701701

702702
# Compute the end of each x-axes line.
703703
rightend_ticks = np.array([len(i)-1 for i in idx]) + np.array(ticks_to_skip)

0 commit comments

Comments
 (0)