Matplotlib是Python中的一個庫,它是數字的-NumPy庫的數學擴展。軸類包含大多數圖形元素:Axis,Tick,Line2D,Text,Polygon等,並設置坐標係。 Axes實例通過callbacks屬性支持回調。
matplotlib.axes.Axes.semilogx()函數
matplotlib庫的axiss模塊中的Axes.semilogx()函數用於繪製在x軸上具有對數比例的圖。
用法:
Axes.semilogx(self, *args, **kwargs)
參數:此方法接受以下描述的參數:
- basex:此參數是x對數的底,是可選參數,默認值為10。
- subsx:此參數是次要X刻度的位置順序,並且是可選的。
- nonposx:此參數是x中的非正值,可以將其掩蓋為無效值,或裁剪為非常小的正數。
返回值:這將返回以下內容:
- lines:這將返回代表繪製數據的Line2D對象的列表。
以下示例說明了matplotlib.axes中的matplotlib.axes.Axes.semilogx()函數:
示例1:
# Implementation of matplotlib function
import numpy as np
import matplotlib.pyplot as plt
fig, ax = plt.subplots()
dt = 0.1
test = np.arange(dt, 30.0, dt)
ax.semilogx(test, np.exp(-test / 6.0))
ax.grid()
ax.set_title('matplotlib.axes.Axes.semilogx Example1')
plt.show()
輸出:
示例2:
# Implementation of matplotlib function
import numpy as np
import matplotlib.pyplot as plt
test = np.arange(0.01, 30.0, 0.1)
# Create figure
fig, ax = plt.subplots()
# log x axis
ax.semilogx(test, np.sin(3 * np.pi * test))
ax.grid()
ax.set_title('matplotlib.axes.Axes.semilogx Example2')
plt.show()
輸出:
相關用法
注:本文由純淨天空篩選整理自SHUBHAMSINGH10大神的英文原創作品 matplotlib.axes.Axes.semilogx() in Python。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。