Answers for "matplotlib x axis label rotation"

5

rotate axis labels matplotlib

plt.xticks(rotation=90)
Posted by: Guest on May-13-2020
1

rotate xticks matplotlib

# rotate xticks of a plot Matplotlib
angle = 90
plt.xticks(rotation=angle)
Posted by: Guest on May-01-2020

Code answers related to "matplotlib x axis label rotation"

Python Answers by Framework

Browse Popular Code Answers by Language