From 0fe0ecccbebe4a74b0c3f31c0fffc3ebeeef1f37 Mon Sep 17 00:00:00 2001 From: Jiri Vlasak Date: Mon, 23 Mar 2020 12:04:24 +0100 Subject: [PATCH] Do not rotate x ticks The description of x axis will be numbers. The explanation of numbers will be in the description of the figure. This is due to lack of the space and better readability. --- scripts/plot.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/scripts/plot.py b/scripts/plot.py index 2523329..3ab92e5 100644 --- a/scripts/plot.py +++ b/scripts/plot.py @@ -37,7 +37,6 @@ def boxplot(w={}, t="", yl=None): ) if yl: ax.set_ylim(yl) - plt.xticks(rotation="vertical") plt.savefig("out.eps", bbox_inches="tight") plt.close() @@ -86,7 +85,6 @@ def barplot(wl=[], t="", yl=None): ) if yl: ax.set_ylim(yl) - plt.xticks(rotation="vertical") plt.savefig("out.eps", bbox_inches="tight") plt.close() -- 2.39.2