Ah, yes, I should have added that I have a lot of them, so this seems like
improper usage. I found the collections.LineCollection class which sounds
like what I want.
Thank you for the help,
John
On Fri, Dec 10, 2010 at 12:34 PM, Chloe Lewis wrote:
> You can plot them all individually; e.g.
>
>
On 12/10/10 10:00 AM, Virgil Stokes wrote:
> Thanks for this link. I tried to use this code but could not load Numeric;
> i.e.
> import Numeric fails.
> Where does one get the necessary modules to execute this code?
Numeric is quite outdated now. You can probably find it somewhere, but
it won't
You can plot them all individually; e.g.
rec = ([1,2,.5], [0.5, 3, 1.1], [5, 7, .2])
for r in rec:
pylab.plot( r[:2], [r[2]]*2)
On Dec 10, 2010, at 12:13 PM, John Salvatier wrote:
> I have a set of records with (start, end, value) values. Basically
> they represent "we had this value betw
I have a set of records with (start, end, value) values. Basically they
represent "we had this value between these two times". The end of one record
is not necessarily the end of another record.
I would like to plot a set of line segments with end points (x=start, y=
value) and (x=end, y=value),
This message (and attachments) is subject to restrictions and a disclaimer.
Please refer to http://www.unisa.ac.za/disclaimer for full details.
Hi
I have a text file containing experimental data obtained over the course of two
years. The data were obtained on a
On 10-Dec-2010 08:01, Nicolas wrote:
> Hi
>
> Jean-Marie Epitalon (from IPSL) developped several scripts devoted to
> model inter-comparison, included Taylor Diagram, which you can find
> here
> (http://www.ipsl.jussieu.fr/~jmesce/Taylor_diagram/Miscelaneous/plot_taylor_diagrams.py)
>
> see also h
On Fri, Dec 10, 2010 at 11:00 AM, Ian Harry wrote:
> Hi Ben,
>
> Thanks for the suggestion, unfortunately I get:
>
> Traceback (most recent call last):
> File "spin_bank.py", line 43, in ?
>
> newBlues = mcolors.LinearSegmentedColormap.from_list("newBlues",
> cm.Blues._lut[cm.Blues.N/3:-3, :
Hi Ben,
Thanks for the suggestion, unfortunately I get:
Traceback (most recent call last):
File "spin_bank.py", line 43, in ?
newBlues = mcolors.LinearSegmentedColormap.from_list("newBlues",
cm.Blues._lut[cm.Blues.N/3:-3, :-1], 256)
AttributeError: class LinearSegmentedColormap has no attri
On Thu, Dec 9, 2010 at 9:01 AM, Ian Harry wrote:
> Hi all,
>
> I am having a problem with manipulating colorbars. I want to take the
> cm.Blues colorbar and edit it so that the lowest end of the colorbar is
> light blue instead of white, or in other words I want to remove the lightest
> 1/4 of th
On Wed, Dec 8, 2010 at 9:15 PM, Timothy W. Hilton wrote:
> Hello,
>
> I'm trying to teach myself to create custom colormaps to highlight
> certain aspects of a dataset I am working with. The script below
> produces two plots -- the first shows a 4x4 array foo of random floats
> between 0.0 and 1.
On Thu, Dec 9, 2010 at 5:00 PM, Russell E. Owen wrote:
> I explored the memory leak in my strip chart widget some more and found
> that it is caused by calling canvas.draw(), where canvas is:
>
> figure = matplotlib.figure.Figure(figsize=(8, 2), frameon=True)
> canvas = FigureCanvasTkAgg(figure, s
11 matches
Mail list logo