matplotlibのx軸を縦書きにする[Python]

import matplotlib.pyplot as plt plt.bar(['Allen','Bob','Mike'], [90, 69, 88]) plt.xticks(rotation=90) # plt.show() plt.savefig('fig.png')

import matplotlib.pyplot as plt plt.bar(['Allen','Bob','Mike'], [90, 69, 88]) plt.xticks(rotation=90) # plt.show() plt.savefig('fig.png')