Re: [Matplotlib-users] Failing to install matplotlib with python 3

2016-06-16 Thread Alan
Thank guys, it was an old pkg-config in my PATH. It's now sorted. Alan On 16 June 2016 at 20:10, Matthew Brett wrote: > Hi, > > On Thu, Jun 16, 2016 at 9:07 AM, Alan wrote: > > Hi there, > > > > I am not the admin so I have installed my own python 3.5.1 and I

[Matplotlib-users] Failing to install matplotlib with python 3

2016-06-16 Thread Alan
information for 'libagg' could not be found. Using local copy.] freetype: yes [version unknown] Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-6

[Matplotlib-users] ImportError: DLL load failed: The specified module could not be found (related to png16.dll)

2014-07-02 Thread Alan Ezust
I am still trying to build matplotlib on windows. The instructions on 1717 were very helpful, I managed to build the prerequisites manually based on the instructions in the dep_build.cmd that came from matplotlib-winbuild project. But when I try to run it I get this error message: >>> import matp

[Matplotlib-users] Windows 7 builds - freetype2 extension FTBFS

2014-06-25 Thread Alan Ezust
I apologize, the error message I posted earlier was for a branch which was not even merged into the current git origin/master. I just switched back to the real "origin/master" branch... Now I get a completely different error message. Windows 7, with ms visual C++ 2010 SP1 x86 python setup.py inst

[Matplotlib-users] Trying to build matplotlib on Windows 7 - error related to ft2bild.h

2014-06-25 Thread Alan Ezust
Hi, I'm trying to build matplotlib (git master) on windows 7, Python 3.3, with ms visual C++ 2010 SP1 The error I am getting is related to how it can't find ft2build.h but after running freetype-2.3.5-1.setup.exe, there is now a copy of it under C:\Program Files (x86)\GnuWin32\include How do I tell

Re: [Matplotlib-users] how to draw concentric donuts chart ?

2014-05-16 Thread Alan G Isaac
On 5/16/2014 7:51 AM, 不坏阿峰 wrote: > how to use matplotlib to drew chart like this ? > http://www.advsofteng.com/doc/cdpydoc/images/concentric.png Not an answer to your question: http://www.businessinsider.com/pie-charts-are-the-worst-2013-6 fwiw, Alan

Re: [Matplotlib-users] Matplotlib-users Digest, Vol 96, Issue 1

2014-05-01 Thread Alan G Isaac
On 5/1/2014 6:47 AM, Björn Opitz wrote: > How would you create a figure as in > "fig = plt.figure()", but without pyplot? http://econpy.googlecode.com/svn/trunk/software4econ.xhtml#mpl-hints

Re: [Matplotlib-users] Millions of data points saved to pdf

2014-05-01 Thread Alan G Isaac
ince you do not care about the individual points. What happens if you decimate the points? Is the result acceptable? Perhaps you could do even better than that, given your posted description. Fit a line to the points, and only plot the fitted line. Or use something like `hexbi

[Matplotlib-users] FuncAnimation documentation problem

2014-02-08 Thread Alan G Isaac
` can be a generator, an iterable, or an integer number of frames. Passing `frames=n` for integer `n` is equivalent to passing `range(n)`. Does this seem correct? Thanks, Alan Isaac PS It would be nice if repeat accepted an integer number of repetitions

Re: [Matplotlib-users] trouble with Arrow

2014-02-03 Thread Alan G Isaac
which I'll bet practically all users are already setting, because of the puzzling default.) Also, am I wrong that the default head_width and head_length are buggy (i.e., not set in proportion to the `width`, as the documentation requires)? Thanks, Alan PS Thanks for 'none'; I'd

Re: [Matplotlib-users] trouble with Arrow

2014-02-02 Thread Alan G Isaac
t I'm starting to think Matplotlib could use a "SimpleArrow". The tail would just be a line. The head would just be a filled triangle. The default would be length_includes_head=True. Alan Isaac -- Managin

Re: [Matplotlib-users] trouble with Arrow

2014-02-02 Thread Alan G Isaac
On 2/2/2014 11:13 PM, Alan G Isaac wrote: > A follow-on question: the `arrow` method of an axes > has `length_includes_head` default to False. Why? > This seems very unfriendly behavior for an "arrow". > It also conflicts with the behavior of an `Arrow`. One more f

Re: [Matplotlib-users] trouble with Arrow

2014-02-02 Thread Alan G Isaac
A follow-on question: the `arrow` method of an axes has `length_includes_head` default to False. Why? This seems very unfriendly behavior for an "arrow". It also conflicts with the behavior of an `Arrow`. Thanks,

[Matplotlib-users] trouble with Arrow

2014-02-02 Thread Alan G Isaac
instead of a list of points - head length and width is not determined by the line width - edge drawing cannot (?) be turned off The head drawing issue is particularly serious. So, have I overlooked an easy way to do what I want? One other question: am I supposed to use `add_patch` or `add_ar

Re: [Matplotlib-users] how can i raise the dpi without changing the dimensions of my picture?

2013-11-18 Thread Alan G Isaac
that's a hassle.) hth, Alan Isaac -- Shape the Mobile Experience: Free Subscription Software experts and developers: Be at the forefront of tech innovation. Intel(R) Software Adrenaline delivers strategic insi

Re: [Matplotlib-users] how can i raise the dpi without changing the dimensions of my picture?

2013-11-17 Thread Alan G Isaac
See the discussion of pixel size at http://wiki.scipy.org/Cookbook/Matplotlib/AdjustingImageSize Alan Isaac -- DreamFactory - Open Source REST & JSON Services for HTML5 & Native Apps OAuth, Users, Roles, SQL, NoS

[Matplotlib-users] axes legend location user-interface bug?

2013-11-12 Thread Alan G Isaac
loc="right" seems the same (?) as loc="center right", but loc="left" fails. (Matches the docs, but is surprising.) Alan Isaac (Mpl version 1.2.0) -- DreamFactory - Open Source REST & JSO

[Matplotlib-users] missing dateutil

2013-08-30 Thread Alan G Isaac
users only need the first two (python and numpy) since the others are built into the matplotlib Windows installers available for download at the download page. Of course, that points to https://github.com/matplotlib/matplotlib/downloads where 1.3 is not yet available ... Thanks, Alan

Re: [Matplotlib-users] real time plotting

2013-03-11 Thread Alan G Isaac
On 3/11/2013 1:59 PM, Neal Becker wrote: > I go through a compute loop that takes maybe a few seconds per pass, then > plot a new point on the graph. If you are willing to use TkAgg, see the TSPlot class here: https://econpy.googlecode.com/svn-history/r175/trunk/abm/gridworld/gridworld.py

Re: [Matplotlib-users] CMYK

2013-01-31 Thread Alan G Isaac
I had access to Adobe Illustrator on my wife's computer, and used its > tools to convert those files to CMYK, and resubmitted it to IEEE's submission > page. The error message I got back? "Images need to be in RGB format" http://matplotlib.org/users/whats_

Re: [Matplotlib-users] creating an object oriented matplotlib figure

2013-01-16 Thread Alan G Isaac
lot class at http://econpy.googlecode.com/svn-history/r175/trunk/abm/gridworld/gridworld.py Alan Isaac -- Master Java SE, Java EE, Eclipse, Spring, Hibernate, JavaScript, jQuery and much more. Keep your Java skills cur

Re: [Matplotlib-users] uniqueness of polar coordinates (meaningfulness of r<0)

2012-12-18 Thread Alan G Isaac
he common acceptance of negative r: http://en.wikipedia.org/wiki/Polar_coordinate_system#Uniqueness_of_polar_coordinates I am not advocating a position on whether Matplotlib should enforce a unique representation, although that seems very doubtful to

Re: [Matplotlib-users] uniqueness of polar coordinates (meaningfulness of r<0)

2012-12-17 Thread Alan G Isaac
http://en.wikipedia.org/wiki/Polar_coordinate_system#Uniqueness_of_polar_coordinates fwiw, Alan Isaac -- LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial Remotely access PCs and mobile devices and

Re: [Matplotlib-users] A sad day for our community. John Hunter: 1968-2012.

2012-09-03 Thread Alan G Isaac
On 8/29/2012 10:32 PM, Fernando Perez wrote: > http://numfocus.org/johnhunter My thanks to NumFOCUS for setting up this memorial fund so that Matplotlib users can say thank you to John. Alan Isaac -- Live Secur

[Matplotlib-users] histogram scaling

2012-07-12 Thread Alan G Isaac
ticklabels won't work nicely.) If there is not sentiment against offering these types, I suggest that the `normed` keyword accept strings, including "fraction" and "percent", and that `hist` be extended to produce these types. Cheers, Alan Isaac ---

Re: [Matplotlib-users] tornado chart

2012-06-22 Thread Alan G Isaac
On 6/21/2012 10:24 PM, Tony Yu wrote: > Here's an example based off the horizontal bar charts in the gallery. Pretty good, really! More than just a starting point. Thanks, Alan -- Live Security Virtual Co

[Matplotlib-users] tornado chart

2012-06-21 Thread Alan G Isaac
-mehta.com/excel/software/tornado/ http://www.juiceanalytics.com/writing/recreating-ny-times-cancer-graph/ A basic version will do, say along the lines of the Chaco example. Thanks for any leads, Alan Isaac -- Live Security

Re: [Matplotlib-users] missing documentation on homepage: subplots

2012-03-13 Thread Alan G Isaac
On 3/13/2012 1:59 PM, gsal wrote: > It does come up for me. You are probably looking at ``subplot`` rather than ``subplots``, which is missing. Alan Isaac -- Keep Your Developer Skills Current with LearnDevNow!

Re: [Matplotlib-users] missing documentation on homepage: subplots

2012-03-13 Thread Alan G Isaac
On 3/13/2012 1:59 PM, gsal wrote: > It does come up for me. You are probably looking at ``subplot`` rather than ``subplots``. Alan Isaac -- Keep Your Developer Skills Current with LearnDevNow! The most comprehens

[Matplotlib-users] missing documentation on homepage: subplots

2012-03-13 Thread Alan G Isaac
Just noticed that ``subplots`` documentation is missing from the homepage http://matplotlib.sourceforge.net/index.html I assume this is an oversight, so I'm reporting it. fwiw, Alan Isaac -- Keep Your Developer S

Re: [Matplotlib-users] Insert PDF/EPS in figure

2012-01-15 Thread Alan G Isaac
e.html Cheers, Alan Isaac -- RSA(R) Conference 2012 Mar 27 - Feb 2 Save $400 by Jan. 27 Register now! http://p.sf.net/sfu/rsa-sfdev2dev2 ___ Matplotlib-users mailing list Matp

Re: [Matplotlib-users] change font properties of legend title?

2011-08-31 Thread Alan G Isaac
On 8/31/2011 8:08 PM, Jae-Joon Lee wrote: > Can you file an github issue for this? https://github.com/matplotlib/matplotlib/issues/448 Thanks! -- Special Offer -- Download ArcSight Logger for FREE! Finally, a world-class

Re: [Matplotlib-users] change font properties of legend title?

2011-08-31 Thread Alan G Isaac
On 8/31/2011 5:48 PM, Alan G Isaac wrote: > How can I change font properties of a legend title? Related question: would it be a reasonable suggestion for Legend.set_title to take a ``prop`` argument? Alan Is

[Matplotlib-users] change font properties of legend title?

2011-08-31 Thread Alan G Isaac
How can I change font properties of a legend title? Thanks, Alan Isaac -- Special Offer -- Download ArcSight Logger for FREE! Finally, a world-class log management solution at an even better price-free! And you'll

Re: [Matplotlib-users] color gradient color_cycle ?

2011-08-04 Thread Alan G Isaac
ml for an approach to the underlying question, which I take to be, how to parametrize line color for a collection of lines. Cheers, Alan Isaac -- BlackBerry® DevCon Americas, Oct. 18-20, San Francisco, CA The must-attend

Re: [Matplotlib-users] parametric line color

2011-07-31 Thread Alan G Isaac
On 7/30/2011 12:03 AM, Alan G Isaac wrote: > I'd like to pick the color for each line > based on its parameter value by mapping > possible parameter values to the colors > in a color map (e.g., gist_rainbow), > retrieving colors one at a time (based > on the parameter value

[Matplotlib-users] parametric line color

2011-07-29 Thread Alan G Isaac
for a line). If two lines have the same parameter value, I need them to have exactly the same color. Hints? Thanks, Alan Isaac -- Got Input? Slashdot Needs You. Take our quick survey online. Come on, we don't as

Re: [Matplotlib-users] making a bar chart with time on xaxis

2011-05-27 Thread Alan G Isaac
yplot_api.html#matplotlib.pyplot.stem (Oddly, the only example of this seems to be a link to a Matlab plot...? But anyway, Matplotlib works great for this.) But if you really want, you can use vlines: http://matplotlib.sourceforge.net/examples/pylab_examples/vline_demo.html h

Re: [Matplotlib-users] Fwd: Venn diagram for five events

2011-05-06 Thread Alan G Isaac
> On 5/6/2011 7:57 AM, Vikram K wrote: >> I wish to draw a Venn diagram depicting five events and >> their intersections. On 5/6/2011 8:07 AM, Alan G Isaac wrote: > Can't be done: > http://www.brynmawr.edu/math/people/anmyers/PAPERS/Venn.pdf More precisely: it c

Re: [Matplotlib-users] Fwd: Venn diagram for five events

2011-05-06 Thread Alan G Isaac
On 5/6/2011 7:57 AM, Vikram K wrote: > > I wish to draw a Venn diagram depicting five events and their intersections. Can't be done: http://www.brynmawr.edu/math/people/anmyers/PAPERS/Venn.pdf hth,

Re: [Matplotlib-users] automatically plotting different sets of data

2011-05-03 Thread Alan G Isaac
On 5/3/2011 2:37 PM, Pau wrote: > I am afraid that I know the answer to the question: use python > > But my problem is that I do not really know python. Fortunately, the documentation is excellent: http://docs.python.org/library/glob.html hth, A

[Matplotlib-users] 3d tick setting in 1.0.1

2011-04-10 Thread Alan G Isaac
What is the status of tick setting in Axes3D? I see there were some issues possibly to be fixed by 1.0.1, but I'm running 1.0.1 and cannot properly set my ticks. Thanks, Alan Isaac -- Xperia(TM) PLAY It'

[Matplotlib-users] 3d labels problem

2011-04-10 Thread Alan G Isaac
ticks, and might the defaults be changed to avoid this? Thanks, Alan Isaac -- Xperia(TM) PLAY It's a major breakthrough. An authentic gaming smartphone on the nation's most reliable network. And it wants your g

Re: [Matplotlib-users] savefig not deducing file format

2011-03-15 Thread Alan G Isaac
On 3/15/2011 8:51 AM, Michael Droettboom wrote: > It has no way of deducing the file format from the file object. Inspect f.name? Alan Isaac -- Colocation vs. Managed Hosting A question and answer guide to determin

[Matplotlib-users] tick format support for ``format``

2011-02-22 Thread Alan G Isaac
core Python functionality) and confusing (because the docs did not point out that the user-provided function must take two arguments). Thanks, Alan Isaac -- Free Software Download: Index, Search & Analyze Logs and othe

Re: [Matplotlib-users] xscale and yscale

2011-02-22 Thread Alan G Isaac
On 2/22/2011 7:47 AM, Waléria Antunes David wrote: > I tried what Ben said: ax.set_ylim(bottom=1) ..., but changed nothing. Put it last, *after* all plotting. And since you won't be able to see your green line, don't plot it. --

[Matplotlib-users] yellow green blue colormap

2011-02-12 Thread Alan G Isaac
Can anyone share a colormap that goes from bright yellow to dark blue via green, along the lines of the middle 2/3 of gist_rainbow? http://www.scipy.org/Cookbook/Matplotlib/Show_colormaps Thanks, Alan Isaac -- The

Re: [Matplotlib-users] Stair plot

2011-02-09 Thread Alan G Isaac
You could use econpy's step_pts function: http://code.google.com/p/econpy/source/browse/trunk/pytrix/pytrix.py fwiw, Alan Isaac -- The ultimate all-in-one performance toolkit: Intel(R) Parallel Studio XE: Pinpoint m

Re: [Matplotlib-users] Resolution in pdf exporting

2011-01-03 Thread Alan G Isaac
On 1/3/2011 11:41 AM, Keld Lundgaard wrote: > I have found that the pdf/eps backend make my plots in a too low resolution > (meaning do not uses enough points in the vector description). "path.simplify" must be set to True in your matplotli

Re: [Matplotlib-users] unofficial binaries (Matplotlib, etc)

2010-12-17 Thread Alan G Isaac
On 12/17/2010 6:28 PM, Christoph Gohlke wrote: > http://www.lfd.uci.edu/~gohlke/pythonlibs/#matplotlib Wow! That's quite an offering. Alan Isaac -- Lotusphere 2011 Register now for Lotusphere 2011 and lear

Re: [Matplotlib-users] image conversion

2010-12-17 Thread Alan G Isaac
On 12/17/2010 12:24 AM, Robert Field wrote: > imagemagick/graphicsmagick aren't able to do the work. I've found something > else to use in the meantime. It would not be off topic to share your solution with the l

Re: [Matplotlib-users] text annotation

2010-11-26 Thread Alan G Isaac
t.text http://matplotlib.sourceforge.net/examples/api/joinstyle.html hth, Alan Isaac -- Increase Visibility of Your 3D Game App & Earn a Chance To Win $500! Tap into the largest installed PC base & get more eyes o

Re: [Matplotlib-users] stem plots:

2010-11-05 Thread Alan G Isaac
nks, Alan -- The Next 800 Companies to Lead America's Growth: New Video Whitepaper David G. Thomson, author of the best-selling book "Blueprint to a Billion" shares his insights and actions to help pro

Re: [Matplotlib-users] show(), the state of the art

2010-11-02 Thread Alan G Isaac
when using IDLE to run a script. fwiw, Alan Isaac -- Nokia and AT&T present the 2010 Calling All Innovators-North America contest Create new apps & games for the Nokia N8 for consumers in U.S. and Canada $10 mill

Re: [Matplotlib-users] unwanted label clipping in gallery

2010-10-28 Thread Alan G Isaac
ed tick labels visually distracting. Isn't a colored axis label enough? Cheers, Alan -- Nokia and AT&T present the 2010 Calling All Innovators-North America contest Create new apps & games for the Nokia

Re: [Matplotlib-users] unwanted label clipping in gallery

2010-10-28 Thread Alan G Isaac
abels) That works. > <http://redwood.berkeley.edu/wiki/VS265:_Homework_assignments> Cool. What proportion of the students choose Python? Cheers, Alan -- Nokia and AT&T present the 2010 Calling All Innovators-N

Re: [Matplotlib-users] unwanted label clipping in gallery

2010-10-28 Thread Alan G Isaac
On 10/27/2010 9:56 PM, Ryan May wrote: > Any idea how the clipped figure problem > was solved in the past? http://www.mail-archive.com/matplotlib-users@lists.sourceforge.net/msg18632.html http://www.mail-archive.com/matplotlib-users@lists.sourceforge.net/msg18537.html fwiw

[Matplotlib-users] unwanted label clipping in gallery

2010-10-27 Thread Alan G Isaac
how to make a single legend for the two lines Btw, how *does* one best do 2? Cheers, Alan Isaac -- Nokia and AT&T present the 2010 Calling All Innovators-North America contest Create new apps & games for the Noki

Re: [Matplotlib-users] stem plots:

2010-10-22 Thread Alan G Isaac
On 10/22/2010 12:39 PM, Stan West wrote: > markerline.set_zorder(markerline.get_zorder() + 0.1) Nice idea. Thanks, Alan -- Nokia and AT&T present the 2010 Calling All Innovators-North America contest Create n

Re: [Matplotlib-users] user group video

2010-10-17 Thread Alan G Isaac
On 10/15/2010 9:40 AM, John Hunter wrote: > http://carlfk.blip.tv/file/2557425 > > The dolphins story [...] starts around 39:30 Good story. -- Download new Adobe(R) Flash(R) Builder(TM) 4 The new Adobe(R) Flex(R) 4 and

[Matplotlib-users] stem plots:

2010-10-14 Thread Alan G Isaac
ax.stem(x, y, '-.') draws the stem second, so that it is visible on top of the dot. Is this intentional? (I think it looks better with the dot on top.) How to reverse? Alan Isaac -- Download new Adobe(

Re: [Matplotlib-users] Graph

2010-10-06 Thread Alan G Isaac
e between 0.0 - 0.2, 0.2 - 0.4, so on so that > points can be better visualized. Change the figsize: http://matplotlib.sourceforge.net/api/pyplot_api.html#matplotlib.pyplot.figure hth, Alan Isaac -- Beautiful is writing

Re: [Matplotlib-users] sector colouring?

2010-09-27 Thread Alan G Isaac
l hth, Alan Isaac -- Start uncovering the many advantages of virtual appliances and start using them to simplify application deployment and accelerate your shift to cloud computing. http://p.sf.net/sfu/novell-sfd

Re: [Matplotlib-users] citation of mpl

2010-09-22 Thread Alan G Isaac
On 9/22/2010 9:45 AM, Bala subramanian wrote: > Kindly tell me how can i site mpl. Google is your friend: http://www.google.com/search?q=cite+matplotlib hth, Alan Isaac -- Start uncovering the many advantages

[Matplotlib-users] another incorrectly clipped PNG in the gallery

2010-09-17 Thread Alan G Isaac
http://matplotlib.sourceforge.net/examples/pylab_examples/accented_text.html hth, Alan Isaac -- Start uncovering the many advantages of virtual appliances and start using them to simplify application deployment and

Re: [Matplotlib-users] colorbar questions ...

2010-09-13 Thread Alan G Isaac
On 9/11/2010 3:10 PM, Oz Nahum wrote: > my question, how to remove the axes around the colorbar, or at least changed > the to be non-visible, still stands... Did you resolve this? Alan Isaac -- Start uncoveri

Re: [Matplotlib-users] Increase Padding Between Axis and Tick Labels

2010-09-13 Thread Alan G Isaac
On 9/13/2010 6:46 AM, Ted Kord wrote: > How do I increase the distance/padding between the tick labels (numbers) and > the axis/axes? http://matplotlib.sourceforge.net/users/customizing.html#customizing-matplotlib (see the pad options) hth, Alan

Re: [Matplotlib-users] Adjusting Image size

2010-09-11 Thread Alan G Isaac
dpi`` you determine the number of pixels. (So "inches" are purely virtual, unless you match the ppi of your display/printer.) hth, Alan Isaac -- Start uncovering the many advantages of virtual appliances and start usi

Re: [Matplotlib-users] Control size of plot window?

2010-08-31 Thread Alan G Isaac
it not work to set figsize and dpi? http://matplotlib.sourceforge.net/api/pyplot_api.html#matplotlib.pyplot.figure Alan Isaac -- This SF.net Dev2Dev email is sponsored by: Show off your parallel programming skills

Re: [Matplotlib-users] how to plot the empirical cdf of an array?

2010-07-09 Thread Alan G Isaac
On 7/9/2010 12:02 AM, per freem wrote: > How can I plot the empirical CDF of an array of numbers in matplotlib > in Python? I recalled David Huard posted the below, which apparently was once in the sandbox... hth, Alan Isaac def empiricalcdf(data, method='Hazen'): "&

Re: [Matplotlib-users] Unequal size gangplots

2010-06-21 Thread Alan G Isaac
You should be able to use http://leejjoon.github.com/mpl_toolkits-gridspec/ for unequal-size plots of the type you describe. Alan Isaac -- ThinkGeek and WIRED's GeekDad team up for the Ultimate GeekDad Father&

Re: [Matplotlib-users] Question?

2010-06-09 Thread Alan G Isaac
On 6/9/2010 9:12 AM, Waléria Antunes David wrote: > Is there a way to plot my functions in the graph so that one can to > visualize the difference between them. Did you try the example I posted? Why is it not adequate? Alan

Re: [Matplotlib-users] Question?

2010-06-08 Thread Alan G Isaac
a Antunes David wrote: > I understand what you are saying, but my functions are these, attached. So my assumption in my previous post that you had parentheses where you wanted them was wrong. (See the post.) Also, see my posted example explaining Gökhan's point. (He

Re: [Matplotlib-users] Question?

2010-06-08 Thread Alan G Isaac
ll scale will look flat. Alan Isaac PS I suspect you did integer division without intending to. Here's a fix for that. You might also want to check your parentheses, noting 1.0/2*4 is 2 (not 1/8), but I assumed you had what you wanted. PPS Sorry if this is sent twice ... import numpy

Re: [Matplotlib-users] Question?

2010-06-08 Thread Alan G Isaac
ll scale will look flat. Alan Isaac PS I suspect you did integer division without intending to. Here's a fix for that. You might also want to check your parentheses, noting 1.0/2*4 is 2 (not 1/8), but I assumed you had what you wanted. import numpy as np import matplotlib.pyplot as plt

Re: [Matplotlib-users] multiple lines

2010-06-01 Thread Alan G Isaac
plot hth, Alan Isaac -- ___ Matplotlib-users mailing list Matplotlib-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Re: [Matplotlib-users] ANN: matplotlib-0.99.3

2010-06-01 Thread Alan G Isaac
refactoring project for NumPy has implications for the upcoming MPL 1.0 relase.) Thanks! Alan Isaac PS Btw, it gets said often but once more won't hurt: Matplot

Re: [Matplotlib-users] Plotting a vector

2010-05-30 Thread Alan G Isaac
net/users/annotations.html hth, Alan Isaac -- ___ Matplotlib-users mailing list Matplotlib-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Re: [Matplotlib-users] Matplotlib-users Digest, Vol 48, Issue 46

2010-05-27 Thread Alan G Isaac
p (using ``show``) and then complain that the mainloop is running! If you want do debug your script, just use ``savefig`` instead of ``show``. If that is not adequate, explain w

Re: [Matplotlib-users] is it possible to continue to Debug when figure is created??

2010-05-21 Thread Alan G Isaac
On 5/21/2010 12:35 PM, Sandy Ydnas wrote: > nothing from > http://stackoverflow.com/questions/458209/is-there-a-way-to-detach-matplotlib-plots-so-that-the-computation-can-continue > > working on Vista for Wings IDE What if you ditch the IDE and just run the script?

Re: [Matplotlib-users] hist question...

2010-05-20 Thread Alan G Isaac
On 5/18/2010 9:53 AM, Nick Schurch wrote: > Is there anyway of re-ploting the distribution generated by hist at a > later point? http://docs.scipy.org/doc/numpy/reference/generated/numpy.histogram.html hth, Alan

Re: [Matplotlib-users] [Gnuplot-py-users] is it possible to continue to Debug when figure is created??

2010-05-18 Thread Alan G Isaac
> http://matplotlib.sourceforge.net/faq/howto_faq.html#use-show Here is some more detail, that I actually think should be added to the above link. http://stackoverflow.com/questions/458209/is-there-a-way-to-detach-matplotlib-plots-so-that-the-computation-can-continue hth, Alan Is

Re: [Matplotlib-users] is it possible to continue to Debug when figure is created??

2010-05-18 Thread Alan G Isaac
First of all, what are you trying to do? What does "figure is created" mean. Do you need it to be drawn on the monitor? Why not save your figure(s) to file(s)? Ch

Re: [Matplotlib-users] Matplotlib-users Digest, Vol 48, Issue 23

2010-05-17 Thread Alan G Isaac
On 5/17/2010 11:31 AM, Sandy Ydnas wrote: > it gets stuck in all tested by me IDE inclusing Komodo,pythonxy http://matplotlib.sourceforge.net/faq/howto_faq.html#use-show hth, Alan Is

Re: [Matplotlib-users] semilogy with dates on x?

2010-05-14 Thread Alan G Isaac
On 5/14/2010 9:03 AM, Matthias Michler wrote: > ax = fig.add_subplot(111, yscale='log') > > or for any other generated axes 'ax' > ax.set_yscale('log') > > Somehow I was unawa

[Matplotlib-users] semilogy with dates on x?

2010-05-12 Thread Alan G Isaac
What is the preferred method to do the equivalent of plot_date with log scaling for the non-date values? Thanks, Alan Isaac -- ___ Matplotlib-users mailing list Matplotlib

Re: [Matplotlib-users] introducing mpl_toolkits.gridspec

2010-05-11 Thread Alan G Isaac
On 5/11/2010 11:57 AM, Jae-Joon Lee wrote: >http://leejjoon.github.com/mpl_toolkits-gridspec/ Yea! Thanks! Alan Isaac -- ___ Matplotlib-users mailing list Matplot

Re: [Matplotlib-users] Animated plots in a Tkinter application

2010-05-05 Thread Alan G Isaac
irst see the embedding_in_tk.py example. Then, for a simple example, you can see TSPlot here: http://econpy.googlecode.com/svn/trunk/abm/gridworld/gridworld.py You can stick it in any frame. For a more complex example see diagram_cl http://www.friedrichromstedt.org/index.php?m=186 hth

[Matplotlib-users] axes3d zlabel fails to rotate

2010-04-22 Thread Alan G Isaac
to the top, it does the necessary rotation.) Alan Isaac -- ___ Matplotlib-users mailing list Matplotlib-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/

Re: [Matplotlib-users] show() at the end of each function of an ensemble of scripts

2010-04-20 Thread Alan G Isaac
http://matplotlib.sourceforge.net/faq/howto_faq.html#use-show hth, Alan Isaac -- ___ Matplotlib-users mailing list Matplotlib-users@lists.sourceforge.net https

Re: [Matplotlib-users] Multicolored Graph / Color coding

2010-04-15 Thread Alan G Isaac
http://matplotlib.sourceforge.net/api/collections_api.html#matplotlib.collections.LineCollection -- Download Intel® Parallel Studio Eval Try the new software tools for yourself. Speed compiling, find bugs proactively,

Re: [Matplotlib-users] how to plot a Polygon / plt.draw() problem

2010-04-11 Thread Alan G Isaac
On 4/11/2010 9:27 AM, Friedrich Romstedt wrote: > I think you can use Tk via the Tkinter Python package. On linux I > heard it's looking a bit weird, but as a starting points it's easy > enough. Weird how? Will that be fixed with the new release (ttk, in Python 2.7)?

Re: [Matplotlib-users] FW: matplotlib

2010-04-07 Thread Alan G Isaac
On 4/7/2010 4:09 AM, Padma TAN wrote: > Your currently selected backend, 'agg' does not support show(). Use a different backend. Alan Isaac -- Download Intel® Parallel Studio Eval Try the new softw

Re: [Matplotlib-users] How to overlay an image on a multi plot? (Edit: how to plot sparklines on an existing plot)

2010-04-06 Thread Alan G Isaac
On 4/5/2010 11:19 PM, Josh Hemann wrote: > For true sparklines, here is > http://bitworking.org/news/Sparklines_in_data_URIs_in_Python another nice > example in Python . > Thanks! Alan -- Download Int

Re: [Matplotlib-users] How to overlay an image on a multi plot? (Edit: how to plot sparklines on an existing plot)

2010-04-05 Thread Alan G Isaac
On 4/5/2010 5:08 PM, Josh Hemann wrote: > Here is the new graphic. > > http://old.nabble.com/file/p28144782/Full5%252B8%252B2_vs_Bulk1%252B2.png > Nice. You might want to see http://www.edwardtufte.com/bboard/q-and-a-fetch-msg?msg_id=0001OR if you have not already.

Re: [Matplotlib-users] Closing a pyplot window under MSWindows and under Linux

2010-04-04 Thread Alan G Isaac
.random.randint(0, 9,(4,)) fig = plt.figure() ax = fig.add_subplot(1,1,1) ax.plot(data) raw_input("Hit Enter to continue") hth, Alan Isaac -- Download Intel® Parallel Studio Eval Try the new softw

Re: [Matplotlib-users] Closing a pyplot window under MSWindows and under Linux

2010-04-03 Thread Alan G Isaac
On 4/3/2010 11:19 PM, Enzo Michelangeli wrote: > multiple show() functionality is important for many users (see > e.g. > http://www.mail-archive.com/matplotlib-users@lists.sourceforge.net/msg13099.html > http://matplotlib.sourceforge.net/api/pyplot_api.html#matplotlib.pyplot.io

Re: [Matplotlib-users] How to overlay an image on a multi plot?

2010-04-01 Thread Alan G Isaac
f the variables > - A quick idea of what the variables did in time > http://agile.unisonis.com/proj/sparkplot/sparkplot.py fwiw, Alan Isaac -- Download Intel® Parallel Studio Eval Try the new software tool

Re: [Matplotlib-users] a quick way to plot 3D surface with point coordination?

2010-03-31 Thread Alan G Isaac
On 3/31/2010 10:40 PM, ericyosho wrote: > send x and y ranges to meshgrid > Does this mean you have the entire grid of points? In any case, you can get an array of your points as np.array([(x,y,z) for (x,y),z in d.iteritems()]) fwiw, Alan

[Matplotlib-users] field plot with null clines

2010-03-30 Thread Alan G Isaac
To get a field plot with null clines, I'm using the approach John illustrated here: http://mail.scipy.org/pipermail/scipy-user/2007-October/014290.html Is this the recommended approach these days? Thanks, Alan

  1   2   3   4   >