91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

修改python plot折線圖的坐標軸刻度方法

發布時間:2020-10-11 03:28:48 來源:腳本之家 閱讀:353 作者:liangyhgood 欄目:開發技術

修改python plot折線圖的坐標軸刻度,這里修改為整數:

修改python plot折線圖的坐標軸刻度方法

代碼如下:

from matplotlib import pyplot as plt
import matplotlib.ticker as ticker
import numpy as np


def std_plot():
 overall_std = [34.369, 21.366, 16.516, 11.151]
 max_std = [36.769, 21.794, 14.390, 4.684]
 plt.figure()
 plt.plot(overall_std, label='average_std')

 plt.plot(max_std, label='max_std')
 plt.legend()
 plt.xlabel('window')
 plt.ylabel('std')
 plt.xticks(range(len(max_std)))
 # plt.gca().xaxis.set_major_formatter(ticker.FormatStrFormatter('%1.1f'))

 plt.show()

std_plot()

可以發現,通過上面的方法可以自定義x軸的刻度顯示為其他樣式,比如根據時間顯示。只需要修改為:

plt.xticks(pd.date_range(‘2014-09-01','2014-09-30'),rotation=90)#設置時間標簽顯示格式

如果希望保留小數點后一位,可以這樣:

修改python plot折線圖的坐標軸刻度方法

from matplotlib import pyplot as plt
import matplotlib.ticker as ticker
import numpy as np


def std_plot():
 overall_std = [34.369, 21.366, 16.516, 11.151]
 max_std = [36.769, 21.794, 14.390, 4.684]
 plt.figure()
 plt.plot(overall_std, label='average_std')

 plt.plot(max_std, label='max_std')
 plt.legend()
 plt.xlabel('window')
 plt.ylabel('std')
 # plt.xticks(range(len(max_std)))
 plt.gca().xaxis.set_major_formatter(ticker.FormatStrFormatter('%1.1f'))

 plt.show()


std_plot()

以上這篇修改python plot折線圖的坐標軸刻度方法就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

资兴市| 长宁区| 图们市| 屏东市| 长葛市| 剑河县| 工布江达县| 霸州市| 黔西| 航空| 浠水县| 鹤壁市| 清河县| 银川市| 遂平县| 海兴县| 郧西县| 鲜城| 肥西县| 靖边县| 仪征市| 安塞县| 镶黄旗| 中山市| 隆子县| 司法| 莎车县| 历史| 昌平区| 东光县| 高雄县| 鹿泉市| 平罗县| 同德县| 秦安县| 渝北区| 鄱阳县| 陵川县| 沅陵县| 平邑县| 山西省|