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

溫馨提示×

溫馨提示×

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

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

matplotlib如何實現scale刻度

發布時間:2021-11-28 16:11:31 來源:億速云 閱讀:499 作者:小新 欄目:云計算

這篇文章主要介紹 matplotlib如何實現scale刻度 ,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

1.5. 對數或者其他非線性坐標軸
使用plt.xscal()來改變坐標軸的刻度

import numpy as np
import matplotlib.pyplot as plt
from matplotlib.ticker import NullFormatter # useful for `logit` scale# Fixing random state for reproducibilitynp.random.seed(19680801)# make up some data in the interval ]0, 1[y = np.random.normal(loc=0.5, scale=0.4, size=1000)
y = y[(y > 0) & (y < 1)]
y.sort()
x = np.arange(len(y))# plot with various axes scalesplt.figure(1)# linearplt.subplot(221)
plt.plot(x, y)
plt.yscale('linear')
plt.title('linear')
plt.grid(True)# logplt.subplot(222)
plt.plot(x, y)
plt.yscale('log')
plt.title('log')
plt.grid(True)# symmetric logplt.subplot(223)
plt.plot(x, y - y.mean())
plt.yscale('symlog', linthreshy=0.01)
plt.title('symlog')
plt.grid(True)# logitplt.subplot(224)
plt.plot(x, y)
plt.yscale('logit')
plt.title('logit')
plt.grid(True)# Format the minor tick labels of the y-axis into empty strings with# `NullFormatter`, to avoid cumbering the axis with too many labels.plt.gca().yaxis.set_minor_formatter(NullFormatter())# Adjust the subplot layout, because the logit one may take more space# than usual, due to y-tick labels like "1 - 10^{-3}"plt.subplots_adjust(top=0.92, bottom=0.08, left=0.10, right=0.95, hspace=0.25,
wspace=0.35)
plt.show()

matplotlib如何實現scale刻度

以上是“ matplotlib如何實現scale刻度 ”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

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

AI

砀山县| 溧水县| 永仁县| 阜新| 托里县| 河曲县| 三原县| 新田县| 当涂县| 镇雄县| 福建省| 高陵县| 乌拉特前旗| 丰原市| 满城县| 荣成市| 即墨市| 浠水县| 吴堡县| 靖边县| 漾濞| 无极县| 普兰店市| 永修县| 七台河市| 扎鲁特旗| 宣城市| 芷江| 和政县| 泸定县| 即墨市| 北票市| 高台县| 桑植县| 秦皇岛市| 平定县| 潮安县| 大安市| 平山县| 乐业县| 阜平县|