如何在 matplotlib 中的极坐标图中绘制曲线文本?
matplotlibpythondata visualization
要在 matplotlib 中的极坐标图中绘制曲线文本,我们可以采取以下步骤
步骤
设置图形大小并调整子图之间和周围的填充。
创建一个新图形或激活一个现有图形。
将 'ax' 添加到图形作为子图布置的一部分。
绘制具有一定程度的线,color='green' 和 linewidth=2。
创建 x 和 y 数据点,使用一些曲线并使用绘制它们plot() 方法。
要显示图形,请使用 Show() 方法。
示例
from matplotlib import pyplot as plt from scipy.interpolate import interp1d import numpy as np plt.rcParams["figure.figsize"] = [7.00, 3.50] plt.rcParams["figure.autolayout"] = True fig = plt.figure() ax = fig.add_subplot(111, projection="polar") for degree in [0, 90, 360]: rad = np.deg2rad(degree) ax.plot([rad, rad], [0, 1], color="green", linewidth=2) for curve in [[[0, 90], [0.45, 0.75]]]: curve[0] = np.deg2rad(curve[0]) x = np.linspace(curve[0][0], curve[0][1], 500) y = interp1d(curve[0], curve[1])(x) ax.plot(x, y, lw=7, color='red') plt.show()
输出
它将产生以下输出 −