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


Python matplotlib.axes.Axes.loglog()用法及代码示例


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

matplotlib.axes.Axes.loglog()函数

matplotlib库的axiss模块中的Axes.errorbar()函数用于绘制在x和y轴上均具有对数比例的图。

用法:


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

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

  • basex, basey:这些参数是x /y对数的底数,并且是可选参数,默认值为10。
  • subsx, subsy:这些参数是次要x /y刻度的位置顺序,并且是可选的。
  • nonposx, nonposy:这些参数是x或y中的非正值,可以将其掩盖为无效值,或裁剪为非常小的正数。

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

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

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

示例1:

# Implementation of matplotlib function 
      
import numpy as np 
import matplotlib.pyplot as plt 
  
t = np.arange(0.01, 20.0, 0.01) 
  
# Create figure 
fig, ax = plt.subplots() 
  
# log x and y axis 
ax.loglog(t, 20 * np.exp(-t / 10.0), basex = 2) 
  
ax.set_title('matplotlib.axes.Axes.loglog Example2') 
plt.show()

输出:

示例2:

# Implementation of matplotlib function 
      
import numpy as np 
import matplotlib.pyplot as plt 
  
fig, ax = plt.subplots(constrained_layout = True) 
x = np.arange(0.02, 1, 0.02) 
np.random.seed(19680801) 
y = np.random.randn(len(x)) ** 2
ax.loglog(x, y) 
ax.set_xlabel('f [Hz]') 
ax.set_ylabel('PSD') 
ax.set_title('Random spectrum') 
  
  
def forward(x):
    return 1 / x 
  
  
def inverse(x):
    return 1 / x 
  
ax.set_title('matplotlib.axes.Axes.loglog Example2') 
plt.show()

输出:




相关用法


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