用 Matplotlib 绘制子图的边框
要绘制 Matplotlib 中子图的边框,我们可以对子图使用矩形路径。
步骤
设置图形大小并调整子图之间及周围的边距。
使用 subplot(121) 向当前人物添加子图。
获取子图轴线。
添加一个矩形,该矩形经由锚点 *xy* 及其 *width* 和 *height* 定义。
基于轴线(步骤 4),向当前子图添加矩形路径。
设置绘图员是否使用剪切。
使用 subplot(122) 向当前人物添加子图。
设置当前子图的标题。
要显示人物,请使用 show() 方法。
示例
from matplotlib import pyplot as plt plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True sub = plt.subplot(121) ax = sub.axis() rec = plt.Rectangle((ax[0] - 0.7, ax[2] - 0.2), (ax[1] - ax[0]) + 1, (ax[3] - ax[2]) + 0.4, fill=False, lw=2, linestyle="dotted") rec = sub.add_patch(rec) rec.set_clip_on(False) plt.title("with border") sub = plt.subplot(122) plt.title("without border") plt.show()
输出
广告