Answers for "vertical label y python bar plot"

5

rotate axis labels matplotlib

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

bar plot fix lenthgy labels matplot

%matplotlib inline
import matplotlib.pyplot as plt
import numpy as np

plt.xticks(rotation='vertical')
Posted by: Guest on July-18-2020

Python Answers by Framework

Browse Popular Code Answers by Language