如何旋转简单的 matplotlib 坐标轴?
要旋转简单的 matplotlib 坐标轴,我们可以采取以下步骤 -
- 导入所需的包 -
import matplotlib.pyplot as plt from matplotlib.transforms import Affine2D import mpl_toolkits.axisartist.floating_axes as floating_axes
- 设置图形大小并调整子图之间和周围的填充。
- 创建一个新图形或激活一个现有图形。
- 制作坐标轴极值的元组。
- 添加一个可变的二维仿射变换,“t”。原地添加一个旋转(以度为单位)到该变换中。
- 从源(曲线)坐标添加一个变换到目标(直线)坐标。
- 使用 GridHelperCurveLinear() 实例添加一个浮动坐标轴 “h” 到当前图形。
- 将 'ax' 作为一个子图排列的一部分添加到图形中。
- 要显示图形,请使用 show() 方法。
示例
# import the packages import matplotlib.pyplot as plt from matplotlib.transforms import Affine2D import mpl_toolkits.axisartist.floating_axes as floating_axes # set the figure size plt.rcParams["figure.figsize"] = [7.00, 3.50] plt.rcParams["figure.autolayout"] = True # plot the figure fig = plt.figure() scales = (0, 5, 0, 5) # Add 2D affine transformation t = Affine2D().rotate_deg(25) # Add floating axes h = floating_axes.GridHelperCurveLinear(t, scales) ax = floating_axes.FloatingSubplot(fig, 111, grid_helper=h) fig.add_subplot(ax) plt.show()
输出
将产生以下输出 -
广告