From dc8e4614ce5756bb1b0427782fe776bfc4fda3e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20Bel=C3=A1k?= Date: Mon, 31 Jul 2023 14:03:14 +0200 Subject: [PATCH] fix: Use previously ignored parameter. --- edvart/plots.py | 2 ++ 1 file changed, 2 insertions(+) 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()