使用 Matplotlib 绘制带有边框颜色的矩形
要在 matplotlib 中为矩形设置边框颜色,我们可以按以下步骤操作:
使用 figure() 方法创建新图形或激活现有图形。
向当前轴添加 subplot 方法。
使用 edgecolor 和边的 linewidth 创建 Rectangle() 类的一个矩形实例。
在绘图中添加矩形路径。
要将文字置于矩形中,我们可以使用 text() 方法。
使用 xlim() 和 ylim() 方法缩放 x 和 y 轴。
要显示图形,请使用 show() 方法。
示例
import matplotlib from matplotlib import pyplot as plt, patches plt.rcParams["figure.figsize"] = [7.00, 3.50] plt.rcParams["figure.autolayout"] = True fig = plt.figure() ax = fig.add_subplot(111) rect = matplotlib.patches.Rectangle((-1, -1), 3, 3, edgecolor='orange', facecolor="green", linewidth=5) ax.add_patch(rect) plt.text(0, 0.5, "Rectangle") plt.xlim([-4, 4]) plt.ylim([-4, 4]) plt.show()
输出
广告