matplotlib . axes . semilogx()用 Python
表示
哎哎哎:# t0]https://www . geeksforgeeks . org/matplot lib-axes-semilogx-in-python/
Matplotlib 是 Python 中的一个库,是 NumPy 库的数值-数学扩展。轴类包含了大部分的图形元素:轴、刻度、线二维、文本、多边形等。,并设置坐标系。Axes 的实例通过回调属性支持回调。
matplotlib . axes . axes . semi ogx()函数
matplotlib 库的 Axes 模块中的axes . semiogx()函数用于在 x 轴上进行对数缩放的绘图。
语法:
py Axes.semilogx(self, *args, **kwargs)
参数:该方法接受以下描述的参数:
- basex: 此参数是 x 对数的底数,可以选择,默认值为 10 。
- subxx:此参数是次要 x 刻度的位置序列,是可选的。
- nonp sx:此参数是 x 中的非正值,可被屏蔽为无效,或被裁剪为非常小的正数。
返回:这将返回以下内容:
- 线:这将返回表示打印数据的线 2D 对象列表..
下面的例子说明了 matplotlib.axes . axes . semi ogx()函数在 matplotlib . axes 中的作用:
示例-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()
输出:
版权属于:月萌API www.moonapi.com,转载请注明出处