>-Original Message-
>From: C M [mailto:cmpyt...@gmail.com]
>
>Sorry, this is super-simple, but I'm lost in the whole
>locator/formatter part of the docs.
>
>How can I make a locator that just places a tick at every multiple of
>0.5 around the data? So the y axis would look like:
>
>3.5 --
> -Original Message-
> From: Adrian HILL [mailto:adrian.h...@esrf.fr]
>
> What is the best way of now plotting this (as single vertical marker
> lines)?
plot(data,zeros_like(data),marker='|',markersize=20,linestyle='None')
-
> From: Pau [mailto:vim.u...@googlemail.com]
>
> PS: I thought I would probably give a better example
>
> The goal is to have all the data files plotted in a single graph
import glob
for filename in glob.glob('*.dat'):
if 'e' in set(filename): #or whatever
#do something for files th
Maybe you want to use the "scatter" procedure?
http://matplotlib.sourceforge.net/examples/pylab_examples/scatter_demo.html?highlight=scatter
http://matplotlib.sourceforge.net/api/pyplot_api.html#matplotlib.pyplot.scatter
> -Original Message-
> From: Pau [mailto:vim.u...@googlemail.co
Is there a way to display more digits on the cursor readout in the
lower right hand corner of the plot window? Right now my setup is only
showing three digits to the right of the decimal point, which isn't
enough when I'm zoomed way in. If that description isn't good enough to
describe what I