📜  Python中的 Matplotlib.pyplot.sca()

📅  最后修改于: 2022-05-13 01:54:31.750000             🧑  作者: Mango

Python中的 Matplotlib.pyplot.sca()

Matplotlib是Python中的一个库,它是 NumPy 库的数值数学扩展。 Pyplot是 Matplotlib 模块的基于状态的接口,它提供了一个类似 MATLAB 的接口。在 Pyplot 中可以使用各种图,包括线图、等高线图、直方图、散点图、3D 图等。

matplotlib.pyplot.sca() 方法

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

下面的示例说明了 matplotlib.figure 中的 matplotlib.pyplot.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)
  
plt.sca(ax[0])
plt.plot(x, y1)
  
plt.sca(ax[1])
plt.plot(x, y2)
  
fig.suptitle("""matplotlib.pyplot.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):
    plt.sca(axes[i])
    axes[i].text(0.5, 0.5, i + 1)
      
fig.suptitle("""matplotlib.pyplot.sca()
function Example\n\n""", fontweight ="bold") 
    
plt.show()  

输出: