如何在 Matplotlib 中绘制半幅或四分之一极坐标图?
要在 Matplotlib 中绘制半幅或四分之一极坐标图,我们可以按照以下步骤操作 −
设置图形大小,并调整子图之间和周围的边距。
创建新图形或使用 figure() 方法激活现有图形。
将轴作为子图排列的一部分添加到图形中。
对于半幅或四分之一极坐标图,使用 set_thetamax() 方法。
要显示图形,请使用 show() 方法。
示例
from matplotlib import pyplot as plt plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True fig = plt.figure() ax = fig.add_subplot(111, projection="polar") max_theta = 90 ax.set_thetamax(max_theta) plt.show()
输出
广告