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


Python Matplotlib.figure.Figure.sca()用法及代码示例


Matplotlib是Python中的一个库,它是数字的-NumPy库的数学扩展。 Figure模块提供了顶层Artist,即Figure,其中包含所有绘图元素。此模块用于控制所有图元的子图和顶层容器的默认间距。

matplotlib.figure.Figure.sca()方法

matplotlib库的sca()方法图形模块用于将当前轴设置为a。

用法:sca(self, a)


参数:此方法接受下面讨论的以下参数:

  • a:该参数是当前轴。

返回值:此方法返回轴。

以下示例说明了matplotlib.figure中的matplotlib.figure.Figure.sca()函数:

范例1:

# Implementation of matplotlib function 
import matplotlib.pyplot as plt 
from scipy import sin, cos 
  
  
fig, ax = plt.subplots(2, 1) 
  
x = [1, 2, 3, 4, 5, 6, 7, 8, 9] 
y1 = sin(x) 
y2 = cos(x) 
  
fig.sca(ax[0]) 
plt.plot(x, y1) 
  
fig.sca(ax[1]) 
plt.plot(x, y2) 
  
fig.suptitle("""matplotlib.figure.Figure.sca() 
function Example\n\n""", fontweight ="bold")  
    
plt.show() 

输出:

范例2:

# Implementation of matplotlib function 
import matplotlib.pyplot as plt 
   
fig, axes = plt.subplots(2, 2)  
axes = axes.flatten()  
for i in range(4):
    fig.sca(axes[i]) 
    axes[i].text(0.5, 0.5, i + 1) 
      
fig.suptitle("""matplotlib.figure.Figure.sca() 
function Example\n\n""", fontweight ="bold")  
    
plt.show()  

输出:





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