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


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


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

matplotlib.axes.Axes.fill()函数

matplotlib库的axiss模块中的Axes.fill()函数用于绘制填充的多边形。

用法:


Axes.fill(self, *args, data=None, **kwargs)

参数:此方法接受以下描述的参数:

  • *args:这些参数是其节点的x和y位置的列表,可以选择后面跟一个颜色说明符。
  • data:此参数是可选参数,它是带有标签数据的对象。

返回值:这将返回多边形列表。

以下示例说明了matplotlib.axes中的matplotlib.axes.Axes.fill()函数:

示例1:

# Implementation of matplotlib function 
       
import numpy as np 
from matplotlib import patches 
import matplotlib.pyplot as plt 
   
x = np.array([1, 4, 1, 4]) 
y = np.array([1, 1, 4, 4]) 
  
fig, ax1 = plt.subplots() 
ax1.fill(x, y, facecolor ='green') 
ax1.set_title('matplotlib.axes.Axes.fill Example 1') 
plt.show()

输出:

示例2:

# Implementation of matplotlib function 
       
import numpy as np 
from matplotlib import patches 
import matplotlib.pyplot as plt 
   
theta = np.deg2rad(np.arange(0.0, 360.0, 1.0)) 
x = 0.5 * np.cos(theta) 
y = 0.5 * np.sin(theta) 
  
fig, (ax1, ax2, ax3) = plt.subplots(1, 3, figsize =(9, 3), 
                                    subplot_kw ={'aspect':'equal'}, 
                                    sharey = True) 
ax1.fill(x, y, facecolor ='green') 
ax1.set_title('Fig 1') 
  
ax2.fill(x, y, facecolor ='green', edgecolor ='black', 
         linewidth = 4) 
  
ax2.set_title('Fig 2') 
  
ax3.fill(x, y, facecolor ='none', edgecolor ='green',  
         linewidth = 4) 
ax3.set_title('Fig 3') 
  
plt.show()

输出:




相关用法


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