当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python Matplotlib.axes.Axes.semilogy()用法及代码示例


Matplotlib是Python中的一个库,它是NumPy库的数学扩展-Axes类包含大多数图形元素:Axis,Tick,Line2D,Text,Polygon等,并设置坐标系。 Axes实例通过callbacks属性支持回调。

matplotlib.axes.Axes.semilogy()函数

matplotlib库的axiss模块中的Axes.semilogy()函数用于绘制在y轴上具有对数刻度的图。

用法:


Axes.semilogy(self, *args, **kwargs)

参数:此方法接受以下描述的参数:

  • basey:此参数是y对数的底,并且是可选参数,默认值为10。
  • subsy:此参数是次要Y刻度的位置顺序,并且是可选的。
  • nonposy:此参数是y中的一个非正值,可以将其屏蔽为无效值,或裁剪为非常小的正数。

返回值:这将返回以下内容:

  • 行数:这将返回代表绘制数据的Line2D对象的列表。

以下示例说明了matplotlib.axes中的matplotlib.axes.Axes.semilogy()函数:

示例1:

# 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.semilogy(test, np.exp(-test / 5.0)) 
ax.grid() 
  
  
ax.set_title('matplotlib.axes.Axes.semilogy 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.semilogy(test, np.sin(3 * np.pi * test)) 
ax.grid() 
  
  
ax.set_title('matplotlib.axes.Axes.semilogy Example2') 
plt.show()

输出:




相关用法


注:本文由纯净天空筛选整理自SHUBHAMSINGH10大神的英文原创作品 Matplotlib.axes.Axes.semilogy() in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。