📜  Python中的 Matplotlib.pyplot.axes()

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

Python中的 Matplotlib.pyplot.axes()

Pyplotmatplotlib的另一个模块,它使用户能够将 MATLAB 集成到Python环境中,从而提供类似 MATLAB 的界面,并使Python具有可视化的交互性。

Matplotlib.pyplot.axes()

pyplot.axes是 matplotlib 库的一个函数,可将轴添加到当前图形并使其成为当前轴。它的输出取决于使用的参数。

示例 1:

# importing matplot library along 
# with necessary modules
import matplotlib.pyplot as plt
  
  
# providing values to x and y 
x = [8, 5, 11, 13, 16, 23]
y = [14, 8, 21, 7, 12, 15]
  
# to plot x and y
plt.plot(x, y)
  
# to generate the full window axes
plt.axes()

输出:

示例 2:

# importing matplot library along 
# with necessary modules
import matplotlib.pyplot as plt
  
  
# providing values to x and y 
x = [8, 5, 11, 13, 16, 23]
y = [14, 8, 21, 7, 12, 15]
  
# to plot x and y
#plt.plot(x, y)
# to generate window of custom 
# dimensions [left, bottom, width,
# height] along with the facecolor 
plt.axes([0, 2.0, 2.0, 2.0], facecolor = 'black') 

输出:

python-matplotlib-axes-2