Я пытаюсь преобразовать точки данных из системы координат данных в систему координат осей в matplotlib.
import matplotlib.pyplot as plt
fig, ax = plt.subplots()
# this is in data coordinates
point = (1000, 1000)
# this takes us from the data coordinates to the display coordinates.
trans = ax.transData.transform(point)
print(trans) # so far so good.
# this should take us from the display coordinates to the axes coordinates.
trans = ax.transAxes.inverted().transform(trans)
# the same but in one line
# trans = (ax.transData + ax.transAxes.inverted()).transform(point)
print(trans) # why did it transform back to the data coordinates? it
# returns [1000, 1000], while I expected [0.5, 0.5]
ax.set_xlim(0, 2000)
ax.set_ylim(0, 2000)
ax.plot(*trans, 'o', transform=ax.transAxes)
# ax.plot(*point, 'o')
fig.show()
Я прочитал руководство по преобразованию и попробовал решение, представленное в этот ответ , на котором основан мой код, но он не работает. Я просто не могу понять почему, и это сводит меня с ума. Я уверен, что есть простое решение, но я его просто не вижу.