matplotblib——折線圖(改變橫座標

>改變橫座標的刻度: #建立一個x軸(1,20),y軸隨機產生的折線圖 fig = plt.figure(figsize=(20,8), dpi=100) x= range(1, 21)#x 軸數據 y = [random.randint(1,21) for i in range(1,21)]#y 軸數據 plt.plot(x, y) #將x的刻度按一個單位來表示 plt.xticks(x,x[:
相關文章
相關標籤/搜索