Re: [Matplotlib-users] No output when using webagg backend

2014-05-06 Thread Skip Montanaro
> I'm trying to use the webagg backend for the first time, and seem to > be bumping into a common problem - nothing appears. I tried this at home on my Mac. Tornado was already installed, so I updated it to 3.2.1, and ran a Matplotlib app I have which allows me to set the backend on the command li

[Matplotlib-users] basic pgf test fails

2014-05-06 Thread Neal Becker
I tried the simple example, but all examples I try choke on savefig ('blah.pdf') This is fedora20 linux, with pretty modern, complete texlive. I tried rm'ing tex-cache example.py # -*- coding: utf-8 -*- import matplotlib as mpl mpl.use("pgf") pgf_with_rc_fonts = { "font.fami

Re: [Matplotlib-users] How to wrap a profile

2014-05-06 Thread Marc Pelletier
Hi Skip, Something like that is probably what I will implement. I want the user to be able to change scale on the fly, so it means keeping 2 copies of the data. Not a big deal, but I just don't want to build something that already exists. cheers, Marc Marc Pelletier, P. Geo. Nutana Geophysic

Re: [Matplotlib-users] How to wrap a profile

2014-05-06 Thread Skip Montanaro
On Tue, May 6, 2014 at 12:10 PM, Marc Pelletier wrote: > > Is there a simple way to accomplish this? Do some modulo arithmetic on your Y values and lie (in your tick labels) about the actual numeric values plotted on the Y axis? Skip -

[Matplotlib-users] How to wrap a profile

2014-05-06 Thread Marc Pelletier
Hello, I'm using the RO.StripChartWdg module to plot real time data. The data can vary quite a lot and rather than autoscale I want to set a vertical scale and have it wrap. This is what I mean by wrapping.. when the value scrolls out of the extents of the window it reappears on the opposite

[Matplotlib-users] No output when using webagg backend

2014-05-06 Thread Skip Montanaro
I'm trying to use the webagg backend for the first time, and seem to be bumping into a common problem - nothing appears. The first time I tried, I got a complaint that tornado was missing, so I installed it. After that, I get to try plotting. Here's my example: >>> import matplotlib >>> matplotlib