我想同时跟踪鼠标相对于两个轴上数据坐标的坐标。我可以很好地跟踪鼠标相对于一个轴的位置。问题是:当我添加第二个轴时twinx()
,两者都只Cursors
报告相对于第二个轴的数据坐标。
例如,我的游标(fern
和muffy
)报告y
-value 是 7.93
Fern: (1597.63, 7.93)
Muffy: (1597.63, 7.93)
如果我使用:
inv = ax.transData.inverted()
x, y = inv.transform((event.x, event.y))
我得到一个索引错误。
所以问题是:如何修改代码以跟踪两个轴的数据坐标?
import numpy as np
import matplotlib.pyplot as plt
import logging
logger = logging.getLogger(__name__)
class Cursor(object):
def __init__(self, ax, name):
self.ax = ax
self.name = name
plt.connect('motion_notify_event', self)
def __call__(self, event):
x, y = event.xdata, event.ydata
ax = self.ax
# inv = ax.transData.inverted()
# x, y = inv.transform((event.x, event.y))
logger.debug('{n}: ({x:0.2f}, {y:0.2f})'.format(n=self.name,x=x,y=y))
logging.basicConfig(level=logging.DEBUG,
format='%(message)s',)
fig, ax = plt.subplots()
x = np.linspace(1000, 2000, 500)
y = 100*np.sin(20*np.pi*(x-1500)/2000.0)
fern = Cursor(ax, 'Fern')
ax.plot(x,y)
ax2 = ax.twinx()
z = x/200.0
muffy = Cursor(ax2, 'Muffy')
ax2.semilogy(x,z)
plt.show()