matplotlib.axes.axes.semilogx - 在X轴上做一个有对数比例的图

matplotlib.axes.axes.semilogx

matplotlib.axes.axes.semilogx()函数,使用matplotlib库的Axes模块中的Axes.semilogx()函数在X轴上做一个有对数比例的图

语法:

> Axes.semilogx(self, *args, **kwargs)

参数:该方法接受如下参数说明:

  • basex:该参数为x对数的底数,可选,默认值为10。
  • subsx:该参数是小x刻度的位置序列,是可选的。
  • nonposx:该参数为x中的非正数,可以被屏蔽为无效,或剪切为一个非常小的正数。

返回如下内容:

  • lines:返回表示绘制数据的Line2D对象列表。

下面的例子演示了matplotlib.axes.axes.semilogx()函数在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()

输出:

matplotlib.axes.axes.semilogx

示例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()

输出:

matplotlib.axes.axes.semilogx

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程