1
當我想要在情節中旋轉時,刻度標籤消失。 下面的代碼:圖中繪製旋轉後沒有刻度標籤
from matplotlib import pyplot as plt
fg = plt.figure()
fg.canvas.set_window_title('My plot')
ax = fg.add_subplot(1,1,1)
ax.plot(my_points)
ax.set_xticklabels(ax.xaxis.get_majorticklabels(), rotation=90)