matplotlib.pyplot.axes()函数

matplotlib.pyplot.axes()函数

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

Matplotlib.pyplot.axes ()

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

语法:matplotlib.pyplot.axes (* args, * * kwargs)

参数:

*args:它可以包含None(无)或float类型的4元组

  • none:它给出了一个新的全窗口轴
  • 4 tuples:它以4个元组作为列表i.e[左底宽高],并给出一个以这些维度为轴的窗口。

**kwargs:有几个关键字参数(kwargs)被用作pyplot.axes()的参数,最常见的包括facecolor, gid, in_layout, label, position, xlim, ylim等。

示例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()

输出:

matplotlib.pyplot.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') 

输出:

matplotlib.pyplot.axes()函数

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程