[Matplotlib-users] Normalize and special scalar handling

2012-10-17 Thread Till Stensitzki
Hello group, is there any special reason for the special handling of scalar arguments in the normalization classes? Would it not be simpler to just use asarray and only use arrays? If nothing speaks against it, i could do a pull request. greetings Till Stensitzki

Re: [Matplotlib-users] display of x-axis ticks and labels

2011-12-06 Thread Till Stensitzki
I think you have to plot something, else matplotlib don't know where to draw the ticks. -- Cloud Services Checklist: Pricing and Packaging Optimization This white paper is intended to serve as a reference, checklist

Re: [Matplotlib-users] missing data in plot

2011-12-06 Thread Till Stensitzki
David Belohrad writes: > This leads me to a conclusion, that matplotlib somehow 'chooses' the > data to be displayed. > > How can I force it to display all the data? I do not mind if not all the > data are displayed in the graph, but it seems that it does not bother to > skip as well the peaks

Re: [Matplotlib-users] subplot with specified heights

2011-10-20 Thread Till Stensitzki
Holger Brandsmeier writes: > > Dear list, > > I would like to have two subplots in a figure one below each other (so > arranged in a 2x1 matrix). I want the upper subplot to have a very > small height compared to the lower one, say 10 times smaller than the > other one. > > How can I do that w

[Matplotlib-users] How to set the data for an existing pcolormesh image?

2011-08-16 Thread Till Stensitzki
Hello, for a interactive gui program i want to change the shown data without changing the rest of the figure. For normal plots, there is a set_xdata/set_ydata methods. For QuadMesh, there is a set_array method, which i don't get to work. Thanks, Till -

Re: [Matplotlib-users] controllin the background of a plot

2011-07-27 Thread Till Stensitzki
Hi, try if: gcf().set_frameon(False) helps. greetings Till -- Got Input? Slashdot Needs You. Take our quick survey online. Come on, we don't ask for help often. Plus, you'll get a chance to win $100 to spend on Thi

[Matplotlib-users] I expanded the embedding_in_qt4.py with a blitting canvas.

2009-12-26 Thread Till Stensitzki
If you want to use it in the example section or anything else, you are welcome. greetings Till #!/usr/bin/env python # embedding_in_qt4.py --- Simple Qt4 application embedding matplotlib canvases # It also shows, that normal plotting is quite slow. # # Copyright (C) 2005 Florent Rougon #

[Matplotlib-users] [PyQt] Plotting resets autoscale_on to true

2009-12-22 Thread Till Stensitzki
Hello, i am using a Matplotlib figure as widget, in a PyQt4 programm. Everything works, except "set_autoscale_on(False)". Everytime i call a figure axes to plot something, it forgets its autoscale status. Here some code, with axs a subplot of a figure: |print axs.get_autoscale_on()