diff --git a/edvart/plots.py b/edvart/plots.py index 9fb792d..035caf8 100644 --- a/edvart/plots.py +++ b/edvart/plots.py @@ -164,4 +164,6 @@ def scatter_plot_2d( ax.set_xticks([]) if not show_yticks: ax.set_yticks([]) + if not show_zerolines: + ax.grid(False) plt.show()