[Matplotlib-users] How to provide colorbars for scatterplots created this way?

2012-12-20 Thread Kynn Jones
I create PNG files of scatterplots with code that, in essence, goes as in the sketch below: cmap = (matplotlib.color.LinearSegmentedColormap. from_list('blueWhiteRed', ['blue', 'white', 'red'])) fig = matplotlib.figure.Figure(figsize=(4, 4), dpi=72) ax = fig.gca() for marker in 'o s ^ *

Re: [Matplotlib-users] sub-sub-plots, sub-sub-sub-plots, etc.

2010-10-20 Thread Kynn Jones
On Tue, Oct 19, 2010 at 1:27 PM, Friedrich Romstedt < friedrichromst...@gmail.com> wrote: > > My idea would be to add another layer. Meaning to provide a class > which *creates* Axes, and which has other instances of *this class* in > an attribute. The attrib would be scalar. Repetition is done

[Matplotlib-users] sub-sub-plots, sub-sub-sub-plots, etc.

2010-10-19 Thread Kynn Jones
I need to generate a fairly complex chart, for which I need the ability to specify not only subplots, but also sub-subplots. (Our group has found such charts useful in the past, but they were generated using horrific MATLAB code, which we're trying to get away from as quickly as we can, not only b