我正在准备一个带有子图和箭头的图形,这里有一个图:Drawing lines between two plots in Matplotlib
在我的图中,子图都具有相等的宽高比,这似乎搞乱了从数据坐标到图形坐标的转换,因此我创建的Line2D对象不会到达我想要的位置。
这是一个简单的例子(从上面的链接修改而来),它展示了这个问题,甚至不需要子图:
import matplotlib
import matplotlib.pyplot as plt
import numpy as np
fig = plt.figure(figsize=(6,4))
ax = fig.add_subplot(111)
ax.set_aspect('equal')
x = [0.2, 0.9]
y = [0.3, 0.7]
ax.plot(x,y,'k--', lw=4)
transFigure = fig.transFigure.inverted()
coord1 = transFigure.transform(ax.transData.transform([x[0],y[0]]))
coord2 = transFigure.transform(ax.transData.transform([x[1],y[1]]))
line = matplotlib.lines.Line2D((coord1[0],coord2[0]),(coord1[1],coord2[1]),
transform=fig.transFigure)
fig.lines.append(line)
plt.show()
通过改变图形的尺寸,可以很容易地看到Line2D对象改变斜率,而轴上的图形保持其斜率(根据需要获得相同的纵横比)。
是否有直接的方法来获取这些图形坐标(或使用不同的变换),使得Line2D对象与绘制的线保持一致?