[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

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] no LUTSIZE in matplotlib._cm anymore

2009-09-22 Thread Alan
Hi there, In mtpl __version__ = '0.98.5.3' "from matplotlib._cm import LUTSIZE" still works, but in matplotlib.__version__ = '0.99.0' no: from matplotlib._cm import LUTSIZE ImportError: cannot import name LUTSIZE How can I replace/solve this issue?

[Matplotlib-users] from matplotlib.numerix.mlab import amax

2009-09-22 Thread Alan
Hi there, I want to move to numpy only. What would be the replacement for: from matplotlib.numerix.mlab import amax ? Many thanks in advance, Alan -- Come build with us! The BlackBerry® Developer Conference in SF, CA

[Matplotlib-users] plotting with marker 'o' but not filled

2008-07-12 Thread Alan
p] File "/sw/lib/python2.5/site-packages/matplotlib/colors.py", line 279, in to_rgb raise ValueError('to_rgb: Invalid rgb arg "%s"\n%s' % (str(arg), exc)) ValueError: to_rgb: Invalid rgb arg "None" cannot convert argument to rgb sequence Bottom line, ve

[Matplotlib-users] ValueError: Can only output finite numbers in PDF

2008-10-03 Thread Alan
ent how to debug it better, but it seems that I cannot generate the PDFs because mtplib functions don't guess a finite number of pages. I hope someone can give any idea. Many thanks in advance. Alan == ERROR: t

Re: [Matplotlib-users] ValueError: Can only output finite numbers in PDF

2008-10-06 Thread Alan
-b matplotlib/lib/matplotlib/rcsetup.py /sw/lib/python2.5/site-packages/matplotlib Cheers, Alan On Fri, Oct 3, 2008 at 1:21 PM, Michael Droettboom <[EMAIL PROTECTED]> wrote: > Are you perhaps trying to plot data containing NaN or Inf? If so, this is > a known bug in 0.98.3 that h

[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

[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] 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] Matplotlib and Flash

2009-06-13 Thread Alan Jackson
Any suggestions for turning a sequence of Matplotlib plots into a Flash movie, on Linux? I did just notice that R now has that capability built in. 8-) -- --- | Alan K. Jackson| To see a World in a Grain of Sand

[Matplotlib-users] Error due to unusual font file

2009-11-05 Thread Alan Jackson
e > > /glb/apps/sss/epd/2.5.4.2.30201/lib/python2.5/site-packages/ma > tplotlib-0.98.5.2n1-py2.5-linux-x86_64.egg/matplotlib/afm.py > > Anyway, it works for me. -- --- | Alan K. Jackson| To see a Worl

Re: [Matplotlib-users] Filling between curves conditionally

2008-11-23 Thread Alan Jackson
s = NULL) for (i in 2:length(x)) { a = c(x[i-1], y1[i-1]) b = c(x[i], y1[i]) c = c(x[i-1], y2[i-1]) d = c(x[i], y2[i]) foo = intersect(a,b,c,d) if (foo[3]) { intersect = cbind(intersect, foo[1:2]) } } intersect } -- --

[Matplotlib-users] open multiple plots from a program

2009-01-24 Thread Alan Jackson
l, so before I dig too deeply into it, I thought I'd ask around. -- --- | Alan K. Jackson| To see a World in a Grain of Sand | | a...@ajackson.org | And a Heaven in a Wild Flower, | | www.aj

[Matplotlib-users] controlling tick label size

2009-02-08 Thread Alan Jackson
e = 9) plt.show() -- --- | Alan K. Jackson| To see a World in a Grain of Sand | | a...@ajackson.org | And a Heaven in a Wild Flower, | | www.ajackson.org | Hold Infinity in the palm of your hand | | Houston, Texas | And Eternity in a

Re: [Matplotlib-users] controlling tick label size

2009-02-08 Thread Alan Jackson
Never mind - I just saw the very timely e-mail from Jouni. Thanks! On Sun, 8 Feb 2009 14:16:59 -0600 Alan Jackson wrote: > Trying to find a simple way to shrink the tick labels for this plot - > since I can have many tiny histograms, the labels need to be smaller, > but it isn't

[Matplotlib-users] Proselytizing Excel users

2009-03-06 Thread Alan Jackson
/ -- --- | Alan K. Jackson| To see a World in a Grain of Sand | | a...@ajackson.org | And a Heaven in a Wild Flower, | | www.ajackson.org | Hold Infinity in the palm of your hand | | Houston, Texas | And Eternity in an hour. - Blake

Re: [Matplotlib-users] Plot data from custom class

2007-03-02 Thread Alan Isaac
John asked: > What is the minimum interface for an object to be > converted to a numpy sequence via as array? The class must inherit from object. That will probably do it. If all else fails, try fromiter. Alan

Re: [Matplotlib-users] plotting wind-speed time series (was: What kind of chart should I use?)

2007-05-04 Thread Alan Jackson
e plot_data with it though? I don't do what you are trying to do, but I do some other weather plots, http://www.oplnk.net/~ajackson/weather/ -- --- | Alan K. Jackson| To see a World in a Grain of Sand | | [EM

[Matplotlib-users] plot cdf

2007-09-26 Thread Alan Isaac
Is there a standard function or practice for plotting the CDF of a series? (I am aware of the output of hist.) Thank you, Alan Isaac - This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R

Re: [Matplotlib-users] multiple (>2) y-axes

2007-10-05 Thread Alan Isaac
This is on the wish list, but is currently unsupported. If you just need an EPS or PDF, you can use PyX: http://pyx.sourceforge.net/gallery/graphs/manyaxes.html hth, Alan Isaac - This SF.net email is sponsored by: Splu

[Matplotlib-users] displaying multiple plots

2008-02-04 Thread Alan Jackson
I've done this on my system at home, but it doesn't seem to be working at work. I generate a series of imshow() plots, each followed by a show() command. When I run the script, it should pause after each show() until I exit the plot, and then display the next plot. But now it isn't working. The fi

Re: [Matplotlib-users] Backend Control

2008-04-02 Thread Alan Isaac
On Wed, 2 Apr 2008, Wolfgang Kerzendorf wrote: > If I plot something with pylab.plot and then > pylab.show the first time. http://matplotlib.sourceforge.net/faq.html#SHOW http://matplotlib.sourceforge.net/faq.html#OO hth, Alan

Re: [Matplotlib-users] Non-linear Regression to a Histogram

2008-05-12 Thread Alan Jackson
d by the 2008 JavaOne(SM) Conference > Don't miss this year's exciting event. There's still time to save $100. > Use priority code J8TL2D2. > http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone > ___ > Matplotlib-users mailing list > Matplotlib-users@

Re: [Matplotlib-users] New pgf backend for LaTex?

2008-05-23 Thread Alan Isaac
producting documents for later publication, at which point I generally need to provide EPS or PDF figures. If you are still interested, you may find the following to be useful: http://www.tug.org/pracjourn/2007-1/mertz/> hth, Alan Isaac ---

Re: [Matplotlib-users] Problem: Multiple plots with same variables plot incorrectly.

2006-05-31 Thread Alan Isaac
assign a new object to the name, rather than changing the existing object. hth, Alan Isaac --- All the advantages of Linux Managed Hosting--Without the Cost and Risk! Fully trained technicians. The highest number of Red Hat certificatio

[Matplotlib-users] requirements

2006-06-28 Thread Alan Isaac
http://matplotlib.sourceforge.net/installing.html "matplotlib requires at a minimum python 2.2+, Numeric or numarray and freetype." Should mention numpy... fwiw, Alan Isaac Using Tomcat but need to do more? Need to support web services, security? Get stuff done qu

Re: [Matplotlib-users] last version that worked well with py2exe?

2006-06-29 Thread Alan Isaac
derstood. But do not overlook that PyInstaller is really the current life of Gordon McMillan's Python Installer, so it really is not a new kid on the block. Cheers, Alan Isaac Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated t

Re: [Matplotlib-users] windrose 0.3

2006-10-12 Thread Alan Isaac
On Thu, 12 Oct 2006, Lionel Roubeyrie wrote: > here the third version of windrose.py This is great. I think moving the labels farther out would be nicer (e.g., http://www.pscleanair.org/airq/windrose/default.aspx ) Cheers, Alan Is

[Matplotlib-users] type error complaint

2006-11-04 Thread Alan Jackson
l1 self.label1.set_text(s) File "/usr/lib/python2.4/site-packages/matplotlib/text.py", line 671, in set_text raise TypeError("This doesn't look like a string: '%s'"%s) TypeError: This doesn't look like a string: '0.0' -- -

[Matplotlib-users] install on Mac

2006-11-06 Thread Alan Isaac
I'm using MacPython 2.5 with numpy installed, and I wish to install matplotlib. Possible? Easy? I'm brand new on the Mac and used to the Windows installers, so if you can point me to *step by step* instructions I'd be very grateful. Tha

Re: [Matplotlib-users] install on Mac

2006-11-07 Thread Alan Isaac
On Mon, 06 Nov 2006, Alan Isaac wrote: > I'm using MacPython 2.5 with numpy installed, > and I wish to install matplotlib. Possible? Easy? > I'm brand new on the Mac and used to the Windows installers, > so if you can point me to *step by step* instructions I'd be

Re: [Matplotlib-users] install on Mac

2006-11-07 Thread Alan Isaac
On Tue, 7 Nov 2006, Charlie Moad wrote: > You'll need 0.87.7. I will try to build/post these > tonight. Thanks!!! > It's not terrible to get it compiled on OSX, but it's not > trivial at the same time. That is what I feared

[Matplotlib-users] ok to ignore warning on first import?

2006-11-17 Thread Alan Isaac
The first time I "import pylab" after installing matplotlib I get many warnings (below). This is 0.87.7 under Python 2.5. Is ignoring these the right thing to do? (I seem to be up and running.) Alan Isaac Warning (from warnings module): File "/Library/Frameworks/Python.fra

[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

[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

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

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

[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] 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,

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
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-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

[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] 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

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] 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] pyplot.show() without stopping script execution?

2009-06-30 Thread Alan G Isaac
temporary file and open it in a viewer. Or build a GUI for the user to interact with: http://matplotlib.sourceforge.net/examples/user_interfaces/embedding_in_tk.html A

Re: [Matplotlib-users] invisible plot

2009-07-15 Thread Alan G Isaac
ig = plt.figure(figsize=(9, 6), dpi=120) myplot = plt.plot(x, y) plt.show() Alan Isaac -- Enter the BlackBerry Developer Challenge This is your chance to win up to $100,000 in prizes! For a limited time, vendors submit

[Matplotlib-users] animate histogram

2009-07-22 Thread Alan G Isaac
Animating a line plot is well covered in the Cookbook: http://www.scipy.org/Cookbook/Matplotlib/Animations Can anyone offer a hint or two for animating a histogram? Thanks, Alan Isaac

Re: [Matplotlib-users] executing function when view interval changes

2009-08-01 Thread Alan G Isaac
On 8/1/2009 4:07 PM Thomas Robitaille apparently wrote: > Since matplotlib is about to hit 0.99, Which reminds me, was there a decision on subplot2grid etc? http://sourceforge.net/mailarchive/message.php?msg_name=6e8d907b0905172009j21b5077fp242c7598ee9fb2c9%40mail.gmail.com> Alan

Re: [Matplotlib-users] subplot [was: executing function when view interval changes]

2009-08-02 Thread Alan G Isaac
> On Sat, Aug 1, 2009 at 7:32 PM, Alan > G Isaac wrote: >> Which reminds me, was there a decision on subplot2grid etc? >> http://sourceforge.net/mailarchive/message.php?msg_name=6e8d907b0905172009j21b5077fp242c7598ee9fb2c9%40mail.gmail.com> >> On 8/2/2009 1:00 AM

Re: [Matplotlib-users] animate histogram

2009-08-07 Thread Alan G Isaac
hanks, Alan Isaac -- Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day trial. Simplify your report design, integration and deployment - and focus on what you do best, core application coding. Dis

Re: [Matplotlib-users] animate histogram

2009-08-08 Thread Alan G Isaac
On 8/8/2009 10:09 AM John Hunter apparently wrote: > Here is the corrected example: Seems perfect! Time to study it. Thanks! Alan -- Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day tr

[Matplotlib-users] updatable time-series plot

2009-08-11 Thread Alan G Isaac
y become available. The attached meets my current needs. Maybe someone will find it helpful, or maybe someone can suggest how to make it better. (I've made it into a working example, using Tkinter. Some values are still hard coded.) Cheers, Alan Isaac from collections import deque impor

Re: [Matplotlib-users] how do I get past show()

2009-08-14 Thread Alan G Isaac
om/matplotlib-users@lists.sourceforge.net/msg12365.html Oddly this is not in the FAQ is the documentation points to a missing item: http://matplotlib.sourceforge.net/api/pyplot_api.html#matplotlib.pyplot.show Alan Isaac --

Re: [Matplotlib-users] animate histogram

2009-08-18 Thread Alan G Isaac
axes were being informed e.g. when setting animated=True for an ax.plot, but now I'm guessing that supposition is wrong the `plot` just provides this as a convenience.) If I have unveiled some radical misconceptions, sorry, I don't have experience with GUI stuff.

Re: [Matplotlib-users] animate histogram

2009-08-18 Thread Alan G Isaac
Ooops, forgot the attachment. Alan """ Adapts John Hunter's example of how to use a path patch to draw a bunch of rectangles for an animated histogram """ import Tkinter as tk import numpy as np import matplotlib as mpl mpl.use('TkAgg')

Re: [Matplotlib-users] show() problem in Mac OS X 10.5.8

2009-08-22 Thread Alan G Isaac
rks. Define "works". It seems to me that you could then have a script that tries to enter the mainloop multiple times. I suspect "works" means that in an interactive session you can enter and leave the mainloop repeatedly

Re: [Matplotlib-users] best format for MS word?

2009-09-01 Thread Alan G Isaac
On 9/1/2009 8:22 PM Shixin Zeng apparently wrote: > Yes, I tried OOo. But its pdf/ps/svg importer is not good enough I'm afraid that for EPS you will not do better by moving to a MS product. At least my luck has been bad. Otoh, I have had pretty good luck with PNG. Alan Isaac

Re: [Matplotlib-users] best format for MS word?

2009-09-02 Thread Alan G Isaac
en on the printed version of the word file. It's > there when I view/print it with gsview. Yes, that was my experience as well, and not just with Word. I think MS products are not playing nicely with EPS, but you might try cleaning it with eps2eps to see i

[Matplotlib-users] download

2009-09-03 Thread Alan G Isaac
The default download from the Matplotlib page link to http://sourceforge.net/projects/matplotlib/ which once again highlights basemap. (I think this was fixed at one point.) fwiw, Alan Isaac -- Let Crystal Reports

Re: [Matplotlib-users] download

2009-09-03 Thread Alan G Isaac
p-0.99.4/basemap-0.99.4.win32-py2.6.exe/download Alan Isaac -- Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day trial. Simplify your report design, integration and deployment - and focus on what

Re: [Matplotlib-users] trouble installing on Vista 64-bit

2009-09-08 Thread Alan G Isaac
On 9/8/2009 1:39 PM, Watson, Nathaniel wrote: > I am running Windows Vista 64-bit and have installed matplotlib from > http://sourceforge.net/projects/matplotlib/ via the "Download Now!". What is the name of the file you downloa

Re: [Matplotlib-users] Tutorial to object-oriented API

2009-09-15 Thread Alan G Isaac
If you are just trying to get started, this might help: http://econpy.googlecode.com/svn/trunk/software4econ.xhtml#mpl_hints Ow, see John's list of suggestions. Alan Isaac -- Come build with us! The BlackB

Re: [Matplotlib-users] Unable to import matplotlib.pylab in Windows

2009-11-23 Thread Alan G Isaac
Just to be clear: import numpy, matplotlib works fine? Alan Isaac -- Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day trial. Simplify your report design, integration and deployment - and

Re: [Matplotlib-users] add table to axes

2009-11-23 Thread Alan G Isaac
On 11/23/2009 4:33 PM, John Hunter wrote: > Take a look at the table demo: > > http://matplotlib.sourceforge.net/examples/pylab_examples/table_demo.html > All posted versions (PNG, hi res PNG, PDF) are improperly clipped. fwiw

[Matplotlib-users] quiver question

2009-11-29 Thread Alan G Isaac
ing it quite right. E.g., x,y = zip(*xy) u,v = np.diff(x), np.diff(y) quiver(x[:-1], y[:-1], u, v, angles='xy') looks like a start but does not get there. I guessed that `scale=1` would complete the picture, but that just showed that I misunder

Re: [Matplotlib-users] quiver question

2009-11-29 Thread Alan G Isaac
ight scaling along each axis, but it does not exist. However I can "fake it" pretty well by plotting first with lines and then on top of that doing quiver(x[1:],y[1:],u,v, pivot='tip', angles='xy') Thanks, Alan -

Re: [Matplotlib-users] quiver question

2009-11-29 Thread Alan G Isaac
On 11/29/2009 11:44 PM, Eric Firing wrote: > in svn there is such an option, but it still doesn't seem to > do exactly the right thing in this case OK, looking forward ... Thanks, Alan -- Let Crystal Reports

Re: [Matplotlib-users] Publish to HTML

2009-12-04 Thread Alan G Isaac
ructuredText, you can use the `include` directive to include code files, and the `figure` directive to include figures. The code is actually in the file produced with the rst2html script; the figures remain in separate files.

Re: [Matplotlib-users] Publish to HTML

2009-12-04 Thread Alan G Isaac
Another possibility is pyReport: http://gael-varoquaux.info/computers/pyreport/ Alan Isaac -- Join us December 9, 2009 for the Red Hat Virtual Experience, a free event focused on virtualization and cloud computing

Re: [Matplotlib-users] Anyone going to Fall AGU next week

2009-12-11 Thread Alan G Isaac
On 12/11/2009 12:07 PM, Brian Larsen wrote: > talking about cool > science and visualizations done can be really useful You probably saw the thumbnail gallery, but if not, it is helpful: http://matplotlib.sourceforge.net/gallery.html (Click a chart for its code.) Alan

Re: [Matplotlib-users] Problem with multiple plots

2010-01-02 Thread Alan G Isaac
http://matplotlib.sourceforge.net/faq/howto_faq.html#use-show -- This SF.Net email is sponsored by the Verizon Developer Community Take advantage of Verizon's best-in-class app development support A streamlined, 14 day to

Re: [Matplotlib-users] Tkinter scripts

2010-01-08 Thread Alan G Isaac
On 1/8/2010 3:08 PM, David Arnold wrote: > Does anyone have some Tkinter scripts using matplotlib they can share? You may find the TSPlot and Histogram classes here http://code.google.com/p/econpy/source/browse/trunk/abm/gridworld/gridworld.py to be helpful. fwiw, Alan Is

Re: [Matplotlib-users] vector EPS

2010-01-21 Thread Alan G Isaac
ler rc setting to xpdf. This alternative produces postscript without rasterizing text, so it scales properly, can be edited in Adobe Illustrator, and searched text in pdf documents." fwiw, Alan Isaac -- Throughout it

Re: [Matplotlib-users] Difference Between Scatter and Plot? (Zig-Zag)

2010-02-05 Thread Alan G Isaac
random.random_sample((2,30)) >>> locs = np.random.random_sample((2,30)) - 0.5 >>> locs = np.cumsum(locs, axis=-1) >>> x,y = locs >>> plt.plot(x,y) hth, Alan Isaac -- The Planet: dedicated and managed h

Re: [Matplotlib-users] Difference Between Scatter and Plot? (Zig-Zag)--Solution

2010-02-07 Thread Alan G Isaac
ast line, i.e., plt.plot(x,y). Is that what you want? hth, Alan -- The Planet: dedicated and managed hosting, cloud storage, colocation Stay online with enterprise data centers and the best network in the business Choose flexi

Re: [Matplotlib-users] MatPlotLib Usage FAQ Page Needs Some Work.

2010-02-08 Thread Alan G Isaac
ost explicit: http://matplotlib.sourceforge.net/faq/usage_faq.html Alan Isaac (just another user...) -- The Planet: dedicated and managed hosting, cloud storage, colocation Stay online with enterprise data centers and the best netwo

Re: [Matplotlib-users] Plotting multiline graph with large dataset (6 lines, about 30, 000, 000 points total

2010-02-10 Thread Alan G Isaac
inch wide axis. That is 1M plotted points per horizontal inch. Here is a list of typical monitor pixel densities: http://en.wikipedia.org/wiki/List_of_displays_by_pixel_density Alan Isaac -- SOLARIS 10 is the OS for Da

Re: [Matplotlib-users] Finding the Supposed MPL show() "bug".

2010-02-11 Thread Alan G Isaac
On 2/11/2010 11:36 AM, Wayne Watson wrote: > you can more easily see error messages if you open it with IDLE Why? Just call it from the command line of a console window that you will leave open. (Or write the error to file.) Alan Is

Re: [Matplotlib-users] Finding the Supposed MPL show() "bug".

2010-02-11 Thread Alan G Isaac
On 2/11/2010 11:42 AM, Wayne Watson wrote: > That link has no reference to tkinter http://matplotlib.sourceforge.net/examples/user_interfaces/embedding_in_tk.html Read down a half dozen lines or so. Alan Is

Re: [Matplotlib-users] A Menagerie of Imports

2010-02-11 Thread Alan G Isaac
amples. Here are a few extra hints: http://econpy.googlecode.com/svn/trunk/software4econ.xhtml#mpl_hints Alan Isaac -- SOLARIS 10 is the OS for Data Centers - provides features such as DTrace, Predictive Self Healing and

Re: [Matplotlib-users] plot(x,y) Trouble?

2010-02-21 Thread Alan G Isaac
wo points > Yes, if you only provide one sequence, it is treated as the ordinates (i.e., second coordinates), and the abscissas are generated for you. See the examples in the documentation: http://matplotlib.sourceforge.net/api/pyplot_api.html#matplotlib.

Re: [Matplotlib-users] plot(x,y) Trouble?

2010-02-21 Thread Alan G Isaac
On 2/21/2010 10:44 AM, Alan G Isaac wrote: > http://matplotlib.sourceforge.net/api/pyplot_api.html#matplotlib.pyplot.plot > Wayne's confusion on the admissible arguments to 'plot' led me to look again at the documentation. I suggest adding the following as the second sente

Re: [Matplotlib-users] A second copy of a figure

2010-02-23 Thread Alan G Isaac
igure() fig2 = make_my_figure() Alan Isaac -- Download Intel® Parallel Studio Eval Try the new software tools for yourself. Speed compiling, find bugs proactively, and fine-tune applications for parallel performance. See why In

Re: [Matplotlib-users] Embedding matplotlib in Tkinter Applications

2010-02-23 Thread Alan G Isaac
getting at the moment) was working on a related project, so you may want to post there. Alan Isaac -- Download Intel® Parallel Studio Eval Try the new software tools for yourself. Speed compiling, find bugs proactively, and

Re: [Matplotlib-users] Embedding matplotlib in Tkinter Applications

2010-02-24 Thread Alan G Isaac
assumed you wanted people to be able to look at how you did it, not just use it. I am not diminishing the application by saying it looks to be a nice example of how to embded Matplotlib in Tk. If it were BSD-licensed I wo

Re: [Matplotlib-users] mplot3d stays?

2010-02-26 Thread Alan G Isaac
On 2/26/2010 3:04 AM, Friedrich Romstedt wrote: > I need a physical rendering engine with light > sources and reflectance/transmittance simulation http://en.wikipedia.org/wiki/POV-Ray ? Alan Isaac -- Download

Re: [Matplotlib-users] using the symbol font in TeX plots

2010-03-01 Thread Alan G Isaac
ht way to go. It would override the marker argument, and any string could be used, getting rid of the above problem. Cheers, Alan Isaac (just a user) -- Download Intel® Parallel Studio Eval Try the new software tools for

Re: [Matplotlib-users] using the symbol font in TeX plots

2010-03-01 Thread Alan G Isaac
icode strings as string markers and test with `is`:: >>> 'o' is 'o' True >>> 'o' is u'o' False Alan Isaac -- Download Intel® Paralle

Re: [Matplotlib-users] Embedding matplotlib in Tkinter Applications

2010-03-02 Thread Alan G Isaac
are addressing. (It is kind of buried in your introductory text.) Cheers, Alan -- Download Intel® Parallel Studio Eval Try the new software tools for yourself. Speed compiling, find bugs proactively, and fine-tune app

[Matplotlib-users] grey scale line plots

2010-03-09 Thread Alan G Isaac
I need a figure containing color line plots to be changed to grayscale, cycling through line styles instead of colors. How? Thanks, Alan Isaac PSI suppose I searched the web ineffectively on this, but I did try

Re: [Matplotlib-users] grey scale line plots

2010-03-10 Thread Alan G Isaac
> On Mar 9, 2010, at 9 Mar, 1:52 PM, Alan G Isaac wrote: > > I need a figure containing color line plots to > > be changed to grayscale, cycling through line > > styles instead of colors. How? On 3/9/2010 10:45 PM, Chloe Lewis wrote: > Here's a skeleton, for a se

[Matplotlib-users] legend: dash pattern length

2010-03-10 Thread Alan G Isaac
I need a longer sample of the dash pattern in the legend. Possible? (numpoints does not work.) Thanks, Alan Isaac -- Download Intel® Parallel Studio Eval Try the new software tools for yourself. Speed compiling, find

Re: [Matplotlib-users] How do I use a grid geometry manager in a matplotlib tk backend

2010-03-11 Thread Alan G Isaac
On 3/11/2010 8:35 AM, Kim Hansen wrote: > I would really like to use a grid geometry manager instead http://effbot.org/tkinterbook/grid.htm hth, Alan Isaac -- Download Intel® Parallel Studio Eval Try the new softw

Re: [Matplotlib-users] legend: dash pattern length

2010-03-11 Thread Alan G Isaac
(after creation)? (There does not appear to be a setter on the legend; do I have to get the handles and set each?) Thanks, Alan -- Download Intel® Parallel Studio Eval Try the new software tools for yourself. Speed comp

Re: [Matplotlib-users] legend: dash pattern length

2010-03-12 Thread Alan G Isaac
> On Thu, Mar 11, 2010 at 8:32 PM, Alan G Isaac wrote: > > 1. What are the units (and why not points)? On 3/11/2010 11:00 PM, Jae-Joon Lee wrote: > Fraction of (legend) font size (in points). It was decided that it is > these dimensions are better to be scale with font size.

Re: [Matplotlib-users] Put many graphs on the same plot.

2010-03-24 Thread Alan G Isaac
ourceforge.net/api/pyplot_api.html#matplotlib.pyplot.plot Here are some possibilities: http://matplotlib.sourceforge.net/gallery.html hth, Alan Isaac -- Download Intel® Parallel Studio Eval Try the new software tools for yoursel

[Matplotlib-users] plot_surface defaults?

2010-03-28 Thread Alan G Isaac
plots! Thanks, Alan Isaac -- Download Intel® Parallel Studio Eval Try the new software tools for yourself. Speed compiling, find bugs proactively, and fine-tune applications for parallel performance. See why Intel Para

  1   2   3   4   >