From 721f04c6ce468be1786d4e12fcb752c49d980b52 Mon Sep 17 00:00:00 2001 From: Felix Kleinert <f.kleinert@fz-juelich.de> Date: Wed, 21 Apr 2021 15:44:02 +0200 Subject: [PATCH] use 45deg rotation for PlotComp --- mlair/plotting/postprocessing_plotting.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mlair/plotting/postprocessing_plotting.py b/mlair/plotting/postprocessing_plotting.py index a3f69ba6..c85cba6c 100644 --- a/mlair/plotting/postprocessing_plotting.py +++ b/mlair/plotting/postprocessing_plotting.py @@ -757,7 +757,7 @@ class PlotCompetitiveSkillScore(AbstractPlotClass): ax.set(ylabel="skill score", xlabel="competing models", title="summary of all stations", ylim=self._lim()) handles, _ = ax.get_legend_handles_labels() - plt.xticks(rotation=90) + plt.xticks(rotation=45, horizontalalignment="right") ax.legend(handles, self._labels) plt.tight_layout() -- GitLab