From 2a5ce3c2dca1bde1dcec647bed626478d8d362b3 Mon Sep 17 00:00:00 2001 From: Tamas Gal <tgal@km3net.de> Date: Tue, 11 Jun 2019 11:12:51 +0200 Subject: [PATCH] Don't share y axis due to display bug in matplotlib --- scripts/time_residuals.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/time_residuals.py b/scripts/time_residuals.py index 677561a..37c79d2 100644 --- a/scripts/time_residuals.py +++ b/scripts/time_residuals.py @@ -44,7 +44,7 @@ def main(): ncols=3, figsize=(16, 10), sharex=True, - sharey=True, + sharey=False, constrained_layout=True) for ax, floor in zip(axes.flatten(), range(1, 19)): -- GitLab