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


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


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

matplotlib.axes.SubplotBase()类

它是子图(即Axes实例)的基类。它提供了各种新方法,这些方法用于生成和操纵图形对象内的一组轴。
注意:在SubplotBase中,Base是对象。

用法: class matplotlib.axes.SubplotBase(fig, *args, **kwargs)


参数:这接受以下描述的以下参数:

  • fig:此参数是matplotlib.figure.Figure。
  • *args:此参数包含值的元组(nrows,ncols,index),换句话说,它是图中具有维度(nrows,ncols)的子图的数组,而index是要创建的子图的索引。

以下示例说明了matplotlib.axes中的matplotlib.axes.SubplotBase()类:
范例1:

# Implementation of matplotlib function 
import matplotlib.pyplot as plt 
from mpl_toolkits.axisartist.axislines import SubplotZero 
import numpy as np 
  
fig = plt.figure(figsize =(4, 3)) 
  
# Zero is the base 
ax = SubplotZero(fig, 1, 1, 1) 
fig.add_subplot(ax) 
  
xx = np.arange(0, 2 * np.pi, 0.01) 
ax.plot(xx, np.sin(xx)) 
  
fig.suptitle('matplotlib.axes.SubplotBase() class Example\n\n',  
             fontweight ="bold") 
  
plt.show()

输出:

范例2:

# Implementation of matplotlib function 
import matplotlib.pyplot as plt 
from mpl_toolkits.axisartist.axislines import Subplot 
  
fig = plt.figure() 
  
ax = Subplot(fig, 111) 
fig.add_subplot(ax) 
  
ax.axis["left"].set_visible(False) 
ax.axis["top"].set_visible(False) 
  
fig.suptitle('matplotlib.axes.SubplotBase() class Example\n\n', 
              fontweight ="bold") 
  
plt.show()

输出:




相关用法


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