中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

修改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

高雄县| 修文县| 宁安市| 温泉县| 孟连| 大足县| 上思县| 九江市| 昭苏县| 金溪县| 黔西| 平江县| 清原| 宁化县| 重庆市| 景德镇市| 突泉县| 开江县| 澳门| 永济市| 邹平县| 西林县| 威信县| 镇沅| 宁强县| 腾冲县| 綦江县| 潜江市| 博爱县| 海伦市| 苗栗县| 米林县| 嘉禾县| 奉化市| 堆龙德庆县| 绿春县| 凤阳县| 讷河市| 海南省| 三都| 蓬莱市|