In R, there is a function locator which is like Matlab's ginput where you can click on the figure with a mouse and select any x,y coordinate. In addition, there is a function called identify(x,y) where if you give it a set of points x,y that you have plotted and then click on the figure, it will return the index of the x,y point which lies nearest (within an adjustable tolerance) to the location you have selected (or multiple indices, if multiple points are selected). Is there such a functionality in Matplotlib?

link|improve this question

FWIW: There's also iselect() in the iplots package (for R). This is a generalization: it involves linking and brushing. The same can be done via the get(,'BrushData') function in Matlab. – Iterator Nov 1 '11 at 18:29
Right, and Rggobi as well. But I was not aware of Matlab's capability for this -- last time I used it intensively was back in the days of version 6.5. Seems to have gotten fancy since then. – crippledlambda Nov 3 '11 at 10:09
Fancy and pricey. The cost of R has also tripled in the last decade, but it remains a bargain. :) – Iterator Nov 3 '11 at 12:24
feedback

1 Answer

up vote 3 down vote accepted

You may want to use a pick event :

fig = figure()
ax1 = fig.add_subplot(111)
ax1.set_title('custom picker for line data')
line, = ax1.plot(rand(100), rand(100), 'o', picker=line_picker)
fig.canvas.mpl_connect('pick_event', onpick2)

Tolerance set by picker parameter there:

line, = ax1.plot(rand(100), 'o', picker=5)  # 5 points tolerance
link|improve this answer
Yes, this is great -- thank you! – crippledlambda Nov 3 '11 at 10:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.