|
From: Benjamin R. <ben...@ou...> - 2010-08-02 14:58:26
|
On Mon, Aug 2, 2010 at 2:15 AM, David Goldsmith <d.l...@gm...>wrote: > On Sun, Aug 1, 2010 at 10:51 PM, David Goldsmith <d.l...@gm...>wrote: > >> Hi! Is there a way to see data values when imaging an array, say, e.g., >> when holding the cursor over a point? >> >> DG >> > > I found the data_browser.py example - how do I use it if I'm not using > pylab.show, i.e., I'm using oo? > > DG > David, Replace "from pylab import figure, show" with "import matplotlib.pyplot as plt" "fig = figure()" with "fig = plt.figure()" "show()" with "plt.show()" I believe that is all you need to do. Ben Root |