如何使用 matplotlib 在 Python 中填充多边形内的区域?

matplotlibpythondata visualization

要使用 matplotlib 在 Python 中填充多边形内的区域,我们可以采取以下步骤 −

步骤

  • 设置图形大小并调整子图之间和周围的填充。

  • 创建一个图形和一组子图。

  • 获取多边形的实例。

  • 获取具有可迭代多边形的补丁的通用集合。

  • 向轴的集合添加"集合";返回该集合。

  • 要显示图形,请使用 show() 方法。

示例

import matplotlib.pyplot as plt
from matplotlib.collections import PatchCollection
from matplotlib.patches import Polygon
import numpy as np

plt.rcParams["figure.figsize"] = [7.50, 3.50]
plt.rcParams["figure.autolayout"] = True

fig, ax = plt.subplots(1)

polygon = Polygon(np.random.rand(6, 2), closed=True, alpha=1)

collection = PatchCollection([polygon])

ax.add_collection(collection)

plt.show()

输出

它将产生以下输出 −


相关文章