[Matplotlib-users] MultiCursor messes with xlim and ylim autoscaling

2016-01-20 Thread Michael Kaufman
Hi Gurus: I'm having a serious problem with MultiCursor and autoscaling... If I do the code below with both MultiCursor instantiations commented out, then all plots are xscaled to [50,55] and yscaled to each plot's appropriate ylimits. If I uncomment the top MultiCursor instantiation, then b

Re: [Matplotlib-users] IMPORTANT: Mailing lists are moving

2015-08-01 Thread Michael Droettboom
emails rolled over to the new list? Steve On 01/08/15 03:07, Michael Droettboom wrote: Due to recent technical problems and changes in policy on SourceForge, we have decided to move the matplotlib mailing lists to python.org. To subscribe to the new mailing lists, please visit: * For

[Matplotlib-users] IMPORTANT: Mailing lists are moving

2015-07-31 Thread Michael Droettboom
possible. Cheers, Michael Droettboom ​ -- ___ Matplotlib-users mailing list Matplotlib-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Re: [Matplotlib-users] pick_event after zooming/panning stops working.

2014-08-21 Thread Michael Kaufman
I think there is: for a zoom/pan, the mouse must move a certain distance to be considered the start of a zoom or pan (button down -> drag -> button up). A pick can be just a click (button down -> button up, no or minimal change in mouse position <1,2 pts?). M On 8/21/14 3:22 PM, Benjamin Root

Re: [Matplotlib-users] pick_event after zooming/panning stops working.

2014-08-21 Thread Michael Kaufman
Hmm, maybe my expectations are not common. Generally when I'm zooming in on data, I want to zoom multiple times one right after another. You always want this behavior when you're panning: you don't want the pan tool to deselect after you release the button. I'm not quite sure why anyone would w

Re: [Matplotlib-users] pick_event after zooming/panning stops working.

2014-08-21 Thread Michael Kaufman
since the mouse cursor looks totally > different. I am curious why you would expect pick events to fire while > using pan/zoom. What is the user-story that compels that expectation? > Perhaps I could be convinced otherwise to offer some sort of toggle. > > > > On Thu, Aug 21, 2014

Re: [Matplotlib-users] pick_event after zooming/panning stops working.

2014-08-21 Thread Michael Kaufman
n Thu, Aug 21, 2014 at 12:01 PM, Thomas Caswell <mailto:tcasw...@gmail.com>> wrote: > > On Thu, Aug 21, 2014 at 9:44 AM, Michael Kaufman <mailto:kaufma...@ornl.gov>> wrote: > > > ># plot axvlines here... etc. > > >

[Matplotlib-users] pick_event after zooming/panning stops working.

2014-08-21 Thread Michael Kaufman
Hi, ipython 3.0.0-dev matplotlib 1.3.1 GTKAgg backend mac osx 10.9 If I create a pick_event on an axvline (with picker=6), there is no problem triggering the pick event the first time the figure is shown (or many times if I _don't_ zoom or pan). But if I then zoom in or pan (using the toolbar

Re: [Matplotlib-users] Undefined color model and inconsistencies between backends

2014-05-16 Thread Michael Goerz
On Fri, 16 May 2014, Eric Firing wrote: > On 2014/05/16 4:41 PM, Michael Goerz wrote: > >While playing around for an afternoon with colors in matplotlib, I came > >across some inconsistencies. I was trying to define colors in sRGB (my > >understanding is that sRGB as a standa

[Matplotlib-users] Undefined color model and inconsistencies between backends

2014-05-16 Thread Michael Goerz
. Of course, I'm doing some slightly crazy stuff in the Notebook, displaying every matplotlib output through PIL, but I cecked that `%matplotlib inline` actually produces the same colors. Should I file this on github as a bug report? Best, Michael P.S.: please CC for direct re

Re: [Matplotlib-users] turning off autoscale

2014-04-24 Thread Michael Mossey
On 4/23/2014 2:41 PM, Eric Firing wrote: > On 2014/04/23 11:19 AM, Michael Mossey wrote: >> I'm sorry, these are questions that could be found in the Axes >> documentation, but I really don't feel like scrolling through 100 pages >> that are irrelevant hoping I

[Matplotlib-users] turning off autoscale

2014-04-23 Thread Michael Mossey
I'm sorry, these are questions that could be found in the Axes documentation, but I really don't feel like scrolling through 100 pages that are irrelevant hoping I can find the relevant functions, which I don't even know what they are called. Is there ever going to be a concise listing of funct

[Matplotlib-users] checking if an artist is in the list of artists for an axes

2014-04-21 Thread Michael Mossey
How do I check if an artist is in the list of artists attached to an axes? Mike -- Start Your Social Network Today - Download eXo Platform Build your Enterprise Intranet with eXo Platform Software Java Based Open Source In

Re: [Matplotlib-users] detect mouse clicks

2014-04-21 Thread Michael Mossey
Further update: I think I know how to do this. I can register a mouse event handler, and its xdata and ydata properties will tell me the data coordinates. On Mon, Apr 21, 2014 at 4:17 PM, Michael Mossey wrote: > Note: I'm looking at the Picker examples now and one problem I see is th

Re: [Matplotlib-users] detect mouse clicks

2014-04-21 Thread Michael Mossey
Note: I'm looking at the Picker examples now and one problem I see is that I'm not asking the user to click on data points, but anywhere on the axes. On Mon, Apr 21, 2014 at 3:49 PM, Michael Mossey wrote: > For my application which is a simple sound file editor written with >

[Matplotlib-users] detect mouse clicks

2014-04-21 Thread Michael Mossey
For my application which is a simple sound file editor written with matplotlib and PyQt4, I want to detect left and right clicks on the canvas. I need to know the data coordinates of the click (i.e., not where on the screen the click occurred, but what data point as defined by the axes it represent

Re: [Matplotlib-users] moving line

2014-04-19 Thread Michael Mossey
On 4/19/2014 3:51 PM, Raymond Smith wrote: Hi Mike, Have you tried blitting? That prevents the draw from redrawing everything on the plot, allowing it to only redraw the single line that's moving, which should help any issues with speed. See some of the examples

[Matplotlib-users] moving line

2014-04-18 Thread Michael Mossey
I'm creating a simple little sound file editor, which includes the ability to play a sound file as a vertical line (a "cursor") moves across the plot of the waveform in sync with the sound. So the trick is, how to create this moving line. First I tried FuncAnimation, but I had problems with the syn

[Matplotlib-users] removing a plot from an axes

2014-04-18 Thread Michael Mossey
Sorry for what is a beginnerish question but I'm having a hard time using the docs. I want to remove a previous plot from an axes. How do I do this? Incidentally, it makes the docs hard to use that there are so many methods on Axes which are spread a great distance over the page. It would be nice

[Matplotlib-users] animate marker moving across plot

2014-04-09 Thread Michael Mossey
I want to plot audio data (samples versus time), and then animate a marker moving across the plot while the audio is played back. The marker should stay in sync with the audio data that is being played at that moment. Is there a way to do this using the animation capabilities of matplotlib? If I c

Re: [Matplotlib-users] Matplotlib + py3 + gtk3

2014-03-02 Thread Michael Droettboom
Thanks. I'd definitely consider this a bug this. Would you mind creating an issue or pull request on github.com/matplotlib/matplotlib so it doesn't get lost? Mike On 03/01/2014 05:42 PM, Jon Roadley-Battin wrote: >On 02/27/2014 06:58 PM, Jon Roadley-Battin wrote: >> Good evening, >> >> I am

Re: [Matplotlib-users] Matplotlib + py3 + gtk3 wouws

2014-02-28 Thread Michael Droettboom
On 02/27/2014 06:58 PM, Jon Roadley-Battin wrote: Good evening, I am at present migrating an application of mine from py27+pygtk (with mpl) to py33+pygobject (gtk3) Unfortunately I am unable to use from matplotlib.backends.backend_gtk3agg import FigureCanvasGTK3Agg as FigureCanvas from

[Matplotlib-users] audio editor

2014-02-05 Thread Michael Mossey
I'm new to Matplotlib and not sure if it's right for my application. I would like to build a simple audio (sound file) editor with the use of Matplotlib. It will plot a waveform, hence the usefulness of matplotlib. I will also need the user to be able to select regions of the waveform by draggi

Re: [Matplotlib-users] font setting in matplotlib 1.3.1

2014-01-27 Thread Michael Droettboom
Thanks for the report. Indeed, you are correct in that the root of this problem is that "Bitstream Vera Sans" does not contain these characters, yet it is being selected erroneously. It does appear that there is a bug in the font selection algorithm, that "Bitstream Vera Sans" gets selected

Re: [Matplotlib-users] axes.text() plotting text outside of axes bounds

2014-01-22 Thread Michael Droettboom
On 01/22/2014 09:43 AM, Benjamin Root wrote: On Wed, Jan 22, 2014 at 9:21 AM, Daryl Herzmann > wrote: Hello, I'm wondering why stuff plotted with ax.text() does not get "clipped" by the axes bounds on the plot. Here's a simple example, run with 1.3

Re: [Matplotlib-users] hexbin runtime warnings

2013-12-30 Thread Michael Droettboom
Not sure. Can you provide a small, standalone example that reproduces the problem? Mike On 12/27/2013 12:05 PM, Neal Becker wrote: > Any idea what could cause hexbin to issue runtime warnings and then draw > a blank figure? > > /home/nbecker/.local/lib/python3.3/site-packages/matplotlib/axes.py

Re: [Matplotlib-users] Navigation Slowness in Matplotlib with Subplots

2013-11-27 Thread Michael Droettboom
The gist here is that `subplot` doesn't really know when the new subplot exactly overlaps another -- it's essentially unaware of what's already there. We could do some deduplication there. However, it's also a completely legitimate use case to create two subplots in the same location, and the

Re: [Matplotlib-users] disabling downloads during build process

2013-11-11 Thread Michael Droettboom
On 11/09/2013 12:34 PM, Nat Echols wrote: A few of the users of our software want to compile the entire mess from source using non-standard compilers and/or options. We try to bundle all dependencies with the package we distribute but the current version of Matplotlib is attempting to download

Re: [Matplotlib-users] The return of Mac OS-X installers

2013-10-31 Thread Michael Droettboom
/matplotlib/matplotlib/matplotlib-1.3.1/matplotlib-1.3.1-py3.3-python.org-macosx10.6.dmg Mike On 10/31/2013 04:18 PM, Michael Droettboom wrote: Courtesy of Matthew Brett, we now have Mac OS X installers again. These are designed to work with the python.org distribution, and include all dependencies

[Matplotlib-users] The return of Mac OS-X installers

2013-10-31 Thread Michael Droettboom
Courtesy of Matthew Brett, we now have Mac OS X installers again. These are designed to work with the python.org distribution, and include all dependencies. They are available here: http://matplotlib.org/downloads Please let us know how you fare! Mike -- _ |\/|o _|_ _. _

Re: [Matplotlib-users] ANN: matplotlib 1.3.1

2013-10-21 Thread Michael Droettboom
is morning. Mike On 10 October 2013 20:19, Michael Droettboom <mailto:md...@stsci.edu>> wrote: I'm pleased to announce the release of matplotlib version 1.3.1. This is a bugfix release. It may be downloaded from here, or installed through the package manager of you

Re: [Matplotlib-users] 1.3 + xkcd + latex

2013-10-21 Thread Michael Droettboom
n't help much, except to show that this is not specific > to just Neal! > > Andrew > > > On 18 October 2013 14:40, Michael Droettboom > mailto:md...@stsci.edu>> wrote: > >> This is really puzzling. What version of matplotl

Re: [Matplotlib-users] 1.3 + xkcd + latex

2013-10-18 Thread Michael Droettboom
This is really puzzling. What version of matplotlib are you running, what platform, and what version of Python? Your example works just fine for me. Mike On 10/18/2013 08:40 AM, Neal Becker wrote: > Neal Becker wrote: > >> This example shows the error on my platform - the xlabel is not render

Re: [Matplotlib-users] 1.3 + xkcd + latex

2013-10-18 Thread Michael Droettboom
On 10/18/2013 08:20 AM, Neal Becker wrote: > Michael Droettboom wrote: > >> The built-in mathtext support does. (I can put "xkcd()" at the top of >> the mathtext_demo.py example and all is well). >> >> It does not work when |text.usetex| is True (when usin

Re: [Matplotlib-users] 1.3 + xkcd + latex

2013-10-18 Thread Michael Droettboom
The built-in mathtext support does. (I can put "xkcd()" at the top of the mathtext_demo.py example and all is well). It does not work when |text.usetex| is True (when using external TeX). But in that case, it should have thrown an exception: |Traceback (most recent call last): File "mathtex

Re: [Matplotlib-users] Matplotlib eating memory

2013-10-14 Thread Michael Droettboom
Sorry to repeat myself, but please reduce this to a short, self contained example, that is absolutely minimal to demonstrate the problem. http://sscce.org/ should help better explain what I'm after. I don't want to find the needle in the haystack here -- there is code in your example that does

Re: [Matplotlib-users] Memory leak when using pyplot.ion() ?

2013-10-14 Thread Michael Droettboom
I haven't had a chance to look into where the memory is actually leaking, ion/ioff are intended for interactive use, and here you are saving a large number of plots to files. Why do you need ion at all? Mike On 10/14/2013 08:51 AM, OCuanachain, Oisin (Oisin) wrote: Hi, I am having problems

[Matplotlib-users] ANN: matplotlib 1.3.1

2013-10-10 Thread Michael Droettboom
I'm pleased to announce the release of matplotlib version 1.3.1. This is a bugfix release. It may be downloaded from here, or installed through the package manager of your choice (when available): http://matplotlib.org/downloads The changelog is copied below: New in 1.3.1 1.3.

Re: [Matplotlib-users] Matplotlib eating memory

2013-10-10 Thread Michael Droettboom
nt, it may not. If I have something that I can *just run* then I can use various introspection tools to see what is going wrong. Mike On 10/10/2013 10:12 AM, Martin MOKREJŠ wrote: Michael Droettboom wrote: Can you provide a complete, standalone example that reproduces the problem. Otherwise al

Re: [Matplotlib-users] Matplotlib eating memory

2013-10-10 Thread Michael Droettboom
On 10/10/2013 09:47 AM, Martin MOKREJŠ wrote: > Benjamin Root wrote: >> >> >> On Thu, Oct 10, 2013 at 9:05 AM, Martin MOKREJŠ > > wrote: >> >> Hi, >>rendering some of my charts takes almost 50GB of RAM. I believe below >> is a stracktrace >> of one such

Re: [Matplotlib-users] Matplotlib eating memory

2013-10-10 Thread Michael Droettboom
Can you provide a complete, standalone example that reproduces the problem. Otherwise all I can do is guess. The usual culprit is forgetting to close figures after you're done with them. Mike On 10/10/2013 09:05 AM, Martin MOKREJŠ wrote: > Hi, >rendering some of my charts takes almost 50GB

Re: [Matplotlib-users] Any progress on binary installer for OSX?

2013-10-03 Thread Michael Droettboom
Matthew Terry, as part of his Mac testing project, has done a great deal of reconnaissance on this. https://github.com/matplotlib/mpl_mac_testing I know he was looking into statically linking some of the C dependencies (freetype, libpng etc.) as a way to make the installer more robust to diff

Re: [Matplotlib-users] Matplotlib installation with Python(x,y)

2013-10-02 Thread Michael Droettboom
It looks like the PyQt4 installation in python(x,y) is somehow broken. If you just open up the python(x, y) interpreter and type >>> from PyQt4.QtGui import QFormLayout or >>> from PyQt4 import QtGui what happens? If that fails too, I'd say the bug is in python(x, y) (or however PyQt4 got

Re: [Matplotlib-users] Matplotlib installation with Python(x,y)

2013-10-02 Thread Michael Droettboom
On 10/02/2013 05:35 AM, ajdcds wrote: > I have a system that has Python(x,y)-2.6.6.2.exe installed. > When running the script "file.py" the following error occurs: > > /Traceback (most recent call last): > File "file.py", line xx, in > import > File "includes\something.py", line 31, in >

Re: [Matplotlib-users] change the EPS font type ... afterwards!

2013-09-24 Thread Michael Droettboom
You could try ps2ps (which comes with ghostscript) or similar tools. Mike On 09/23/2013 06:13 PM, Grigoris Maravelias wrote: > Hello to all! > > I have been using Matplotlib to create a series of plots and now the > time to submit the paper has come! But I experience problems now with > the font

Re: [Matplotlib-users] Performance issue when drawing a dotted Rectangle patch then zooming

2013-09-04 Thread Michael Droettboom
On 09/04/2013 12:47 PM, Sylvain LÉVÊQUE wrote: > Hello > > I have a performance issue when using a Rectangle patch with linestyle > 'dotted'. Here is some code showing it: > > > from matplotlib import gridspec > > gs = gridspec.GridSpec(1, 2) > ax1 = plt.subplot(gs[0, 0]) > ax2 = plt.subplot(gs[0,

[Matplotlib-users] useoffset=False in matplotlibrc?

2013-09-03 Thread K . -Michael Aye
Is there a way to have ax.ticklabel_format(useOffset=False) as default? I searched in the example matplotlibrc file but can't see anything that could be used? Cheers, Michael -- Learn the latest--Visual S

Re: [Matplotlib-users] Matplotlib installation issues

2013-09-03 Thread Michael Droettboom
On 08/31/2013 12:24 PM, Goyo wrote: > 2013/8/31 Dino Bektešević : >> Hello, >> >> After a little mishap from ubuntu 12.04 after which I reinstalled the >> OS, on this fresh install I did: >> >>> sudo apt-get install python-numpy python-scipy python-matplotlib ipython >>> ipython-notebook python-pa

Re: [Matplotlib-users] [matplotlib-devel] I have a Mac!

2013-08-30 Thread Michael Droettboom
Very impressive! This is really great. That does sure look like a dateutil bug. Maybe we try reporting it over there? As for transferring the repository... I've added you as a developer in the matplotlib organization, so you can work over there. And it looks like you are the only one who

Re: [Matplotlib-users] [matplotlib-devel] I have a Mac!

2013-08-30 Thread Michael Droettboom
BTW: I've got uploading of test results to S3 working on the main matplotlib repository. It would be cool to do that here, too, but I believe the encrypted keys are specific to the github repo. We can coordinate off-line once the repo is transferred about how to do this. Mike On 08/29/2013

Re: [Matplotlib-users] Build failure

2013-08-30 Thread Michael Droettboom
I wonder if it's commit 6b827cbf. Can you do: git checkout 6b827cbf python setup.py build # confirm it fails git checkout 6b827cbf^ python setup.py build # Does this work? Mike On 08/30/2013 01:06 PM, Nils Wagner wrote: Hi Michael, Thank you for your note. If I rem

Re: [Matplotlib-users] Build failure

2013-08-30 Thread Michael Droettboom
It looks like a version mismatch with PyCXX. Was it recently updated or changed? What version of PyCXX do you have? What was the last version of matplotlib that worked for you? You can force matplotlib to use its local copy of PyCXX by uninstalling PyCXX, or adding the following lines to th

Re: [Matplotlib-users] plotting large images

2013-08-27 Thread Michael Droettboom
On 08/27/2013 09:49 AM, Chris Beaumont wrote: I've been burned by this before as well. MPL stores some intermediate data products (for example, scaled RGB copies) at full resolution, even though the final rendered image is downsampled depending on screen resolution. I've used some hacky trick

Re: [Matplotlib-users] [matplotlib-devel] I have a Mac!

2013-08-16 Thread Michael Droettboom
I've been in touch with the Travis-CI guys about this a little bit. They restrict each project to a single OS partly to reduce resource consumption, but they said they might reconsider for paying customers (which we may want to become). Mike On 08/16/2013 04:17 PM, Matt Terry wrote: I was

Re: [Matplotlib-users] [matplotlib-devel] I have a Mac!

2013-08-16 Thread Michael Droettboom
o develop matplotlib? I gave up a long time ago and started piecing to together my meager PRs in a linux VM. -paul On Fri, Aug 16, 2013 at 6:52 AM, Michael Droettboom <mailto:md...@stsci.edu>> wrote: Thanks to the gracious donation from Hans Petter Langtangen and the Center

[Matplotlib-users] I have a Mac!

2013-08-16 Thread Michael Droettboom
Thanks to the gracious donation from Hans Petter Langtangen and the Center for Biomedical Computing at Simula (http://home.simula.no/~hpl), I now have a new Mac Mini sitting at my desk. This should allow me to keep on top of changes that affect the Mac builds and to better track down Mac-only

[Matplotlib-users] Is anyone producing matplotlib daily builds?

2013-08-13 Thread Michael Droettboom
As I'm researching what we may want to do for better continuous integration, I'm remembering that at least one person, Thomas Kluyver, is producing daily automated builds (for Ubuntu) here: https://launchpad.net/~takluyver/+archive/matplotlib-daily

[Matplotlib-users] Calling to those "embedding" matplotlib in applications

2013-08-12 Thread Michael Droettboom
I'm considering changing the behavior of the rcParam |interactive| (which also can be set through |matplotlib.interactive()| and |pyplot.ion()| and |pyplot.ioff()|). Currently, when setting |interactive| to |True|, running any sort of matplotlib plot as a script will fail to display a window. T

Re: [Matplotlib-users] corrupt fonts problem

2013-08-07 Thread Michael Droettboom
You can set the rcParam "verbose.level" to "debug-annoying". Then, when it runs through all of your fonts, it should be clear which one caused the problem. Note that I'm in the process of rewriting large parts of the font infrastructure as part of MEP14, so these sorts of things should hopefu

Re: [Matplotlib-users] pip install 0SX 10.7

2013-08-07 Thread Michael Droettboom
On 08/07/2013 01:24 PM, Matthew Brett wrote: > Hi, > > On Wed, Aug 7, 2013 at 4:50 AM, Michael Droettboom wrote: >> It should look in /usr/include and /usr/local/include by default. Is it >> in either place? > There are no freetype* files in either place, no. How would

Re: [Matplotlib-users] wrong link at http://matplotlib.org?

2013-08-07 Thread Michael Droettboom
Hmm... It takes me to the matplotlib project page on sourceforge, which I think is as close to a direct permalink as we can get. Not sure why it takes you somewhere else. Did you get redirected? Mike On 08/07/2013 11:47 AM, keith.bri...@bt.com wrote: > The link "join the matplotlib mailing l

Re: [Matplotlib-users] pip install 0SX 10.7

2013-08-07 Thread Michael Droettboom
It should look in /usr/include and /usr/local/include by default. Is it in either place? On 08/06/2013 10:16 PM, Matthew Brett wrote: > Hi, > > Continuing my adventures with setuptools > > I'm installing matplotlib into a clean + numpy virtualenv with python.org 2.7 > > I have CC=clang in or

Re: [Matplotlib-users] ANN: matplotlib 1.3.0 released

2013-08-06 Thread Michael Droettboom
s wrong, and how it needs to be re-ordered? Mike On Mon, Aug 5, 2013 at 10:29 AM, Michael Droettboom <mailto:md...@stsci.edu>> wrote: On 08/03/2013 07:50 AM, Rita wrote: Same problem in Linux also. Here is what I did to fix it: Remove the freetype/fontconfig rpm from

Re: [Matplotlib-users] 1.3.0 and py2exe regression

2013-08-06 Thread Michael Droettboom
I have little to no experience with py2exe, so I don't know how much I can help there. However, between 1.2.1 and 1.3.0, mpl_toolkits was changed to a "namespace" package, which allowed basemap to install into it despite it coming from matplotlib (and being installed with setuptools). I don't

Re: [Matplotlib-users] Bug in Custom Dash List

2013-08-05 Thread Michael Droettboom
The problem is that a 0-length dash or space is undefined. In Agg, it causes an infinite loop (presumably because the line cursor never moves). Saving it to a PDF file and opening it in Acrobat Reader reveals a blank page (presumably because it's doing something smarter, but also basically th

Re: [Matplotlib-users] Rendering SciPy docstrings as markup text within matplotlib

2013-08-05 Thread Michael Droettboom
docutils is the library that supports the format (restructuredtext) that these docstrings are written in. It *may* (I haven't looked) contain functionality to render as clean plain text. Mike On 08/05/2013 09:57 AM, federico vaggi wrote: Hi, SciPy (and NumPy) docstrings are written with a s

Re: [Matplotlib-users] ANN: matplotlib 1.3.0 released

2013-08-05 Thread Michael Droettboom
M, Andrew Jaffe <mailto:a.h.ja...@gmail.com>> wrote: Hi, On 01/08/2013 19:06, Michael Droettboom wrote: > On behalf of a veritable army of super coders, I'm pleased to announce > the release of matplotlib 1.3.0. Two issues on OSX 10.8.4. I had been pre

Re: [Matplotlib-users] ANN: matplotlib 1.3.0 released

2013-08-02 Thread Michael Droettboom
Can you provide the output of the build? On 08/02/2013 06:53 AM, Andrew Jaffe wrote: > Hi, > > > On 01/08/2013 19:06, Michael Droettboom wrote: >> On behalf of a veritable army of super coders, I'm pleased to announce >> the release of matplotlib 1.3.0. > Two

Re: [Matplotlib-users] ANN: matplotlib 1.3.0 released

2013-08-01 Thread Michael Droettboom
Choose it as a backend. See here: http://matplotlib.org/faq/usage_faq.html#what-is-a-backend Then when you call "plt.show()", it will fire up the webserver and launch a browser window. Mike On 08/01/2013 03:03 PM, K.-Michael Aye wrote: Very nice, congrats! I was lookin

Re: [Matplotlib-users] ANN: matplotlib 1.3.0 released

2013-08-01 Thread K . -Michael Aye
Very nice, congrats! I was looking for some example to setup webagg but can't seem to find any? Is there anything written down about it? Cheers, Michael On 2013-08-01 18:06:35 +0000, Michael Droettboom said: On behalf of a veritable army of super coders, I'm pleased to ann

[Matplotlib-users] MEP19: Continuous integration virtual meeting

2013-08-01 Thread Michael Droettboom
(Apologies for cross-posting). matplotlib has a dire need to improve its continuous integration testing. I've drafted MEP19 and solicited comments, but there hasn't been a lot of feedback thus far. As an alternative to mailing list discussion, where this sort of upfront planning can sometimes

[Matplotlib-users] ANN: matplotlib 1.3.0 released

2013-08-01 Thread Michael Droettboom
polation * control of baselines in stackplot * many improvements to text and color handling For a complete list of what's new, see <http://matplotlib.org/users/whats_new.html#new-in-matplotlib-1-3>http://matplotlib.org/users/whats_new.html#new-in-matplotlib-1-3 Have fun, and enjo

Re: [Matplotlib-users] way to copy an axes object into different figures

2013-07-31 Thread K . -Michael Aye
fails? > > Cheers > > > On Tue, Jul 30, 2013 at 10:13 AM, K.-Michael Aye > wrote: > Hi! > > Is there a way to copy an axes object into different figures? > The idea would be to first create a valuable plot, save it on its own > into a file, and then ad

Re: [Matplotlib-users] way to copy an axes object into different figures

2013-07-31 Thread K . -Michael Aye
_renderer()). I have never done it this > way but should have the same results I am guessing as what I mentioned > above. There was no error message, but nothing showed up either. > > Cheers > > > On Tue, Jul 30, 2013 at 10:13 AM, K.-Michael Aye > wrote: > Hi! >

Re: [Matplotlib-users] Pdf File sizes on newer versions of matplotlib is a lot larger

2013-07-31 Thread Michael Droettboom
On 07/31/2013 10:38 AM, Jeffrey Spencer wrote: Michael, Pdftocairo is a good tool to know so thanks for that tip. I still think currently it is a regression with the current 'stamp' method to use it on all accounts. I understand in a complicated figure with a bunch of subplots

Re: [Matplotlib-users] Pdf File sizes on newer versions of matplotlib is a lot larger

2013-07-31 Thread Michael Droettboom
On 07/30/2013 04:20 PM, Jeffrey Spencer wrote: Michael, Thanks that is very informative. Answers most of the problems I was having and read MEP14 which looks really useful That being said does the ps backend subset the fonts or use collections for drawing (is the collections feature global

Re: [Matplotlib-users] Pdf File sizes on newer versions of matplotlib is a lot larger

2013-07-30 Thread Michael Droettboom
There are two different things going on here. Between 1.2.1 and now, there was a bugfix to the font selection routine that inadvertently introduced a bug selecting fonts in the usetex backend. You may notice that on master, the IPA font selected is different. The file size difference can be

Re: [Matplotlib-users] Pdf File sizes on newer versions of matplotlib is a lot larger

2013-07-30 Thread Michael Droettboom
On 07/30/2013 09:23 AM, Jouni K. Seppänen wrote: > Jeffrey Spencer writes: > >> I have three different versions of matplotlib that all output different >> file sizes with matplotlib 1.1.1 providing the smallest. This is for the >> same exact script. I can post the script if that helps. >> >> MPL 1

[Matplotlib-users] Funny basemap subplots zooming bug

2013-07-29 Thread K . -Michael Aye
I have creted two polar stereographic basemaps that look like this: http://imgur.com/ayqINQ6 But when zooming in, this happens: http://imgur.com/ca5OFgj I have confirmed that this happens only for the Basemap with round=True option. Michael

[Matplotlib-users] way to copy an axes object into different figures

2013-07-29 Thread K . -Michael Aye
iated! Michael -- Get your SQL database under version control now! Version control is standard for application code, but databases havent caught up. So what steps can you take to put your SQL databases under version co

Re: [Matplotlib-users] Results of matplotlib user survey 2013

2013-07-18 Thread Michael Droettboom
Apologies: I didn't realize the link to the raw results only exists for users with edit permissions. The public URL for the raw results is: https://docs.google.com/spreadsheet/ccc?key=0AjrPjlTMRTwTdHpQS25pcTZIRWdqX0pNckNSU01sMHc&usp=sharing Mike On 07/18/2013 09:42 AM, Michael D

[Matplotlib-users] Results of matplotlib user survey 2013

2013-07-18 Thread Michael Droettboom
We have had 508 responses to the matplotlib user survey. Quite a nice turnout! You can view the results here: https://docs.google.com/spreadsheet/viewanalytics?key=0AjrPjlTMRTwTdHpQS25pcTZIRWdqX0pNckNSU01sMHc&gridId=0#chart and from there, you can access the complete raw results. I will be d

Re: [Matplotlib-users] numpy masked array plot - isolated single unmasked value is hidden

2013-07-17 Thread Michael Droettboom
You could use a single pixel for a marker (','), I guess. But as you say, you need at least two points for a line segment. Mike On 07/17/2013 10:45 AM, Gregorio Bastardo wrote: > Hi, > > The following example demonstrates the problem, value 5 could not be > seen w/o marker: > > data = np.arange

Re: [Matplotlib-users] cbook.report_memory IOError

2013-07-17 Thread Michael Droettboom
To debug, it might be helpful to try ps -p PID -o rss,vsz (where PID is the process id of an interesting process) and see what happens. Mike On 07/17/2013 02:05 AM, Eric Firing wrote: > On 2013/07/16 5:50 PM, K.-Michael Aye wrote: >> Hi! >> >> I have just run an old co

Re: [Matplotlib-users] Install problems, OSX 10.6.8, Python 3.3.1

2013-07-17 Thread Michael Droettboom
Do any Mac experts have any ideas? One thing that may help us is to fire this up in gdb and get a traceback. 1) Run "gdb python" (or "gdb python3"). 2) At the gdb prompt, type "run" 3) At the Python prompt, type "import matplotlib.pyplot" 4) Python should crash, then type "bt" to get a backtrace

Re: [Matplotlib-users] [Patch] Patch for fontmanager crash

2013-07-17 Thread Michael Droettboom
This patch doesn't make a whole lot of sense to me. get_name should work just fine if self._family is None, and indeed it does in my own testing: ``` from matplotlib import font_manager f = font_manager.FontProperties(None) print f._family print f.get_family() print f.get_name() ``` So I'd mu

Re: [Matplotlib-users] Graph ticks label missing !

2013-07-17 Thread Michael Droettboom
Can you please provide a completely standalone example? The following code has undefined variables etc. Mike On 07/08/2013 10:49 AM, Nicolas Mailhot wrote: >subplot.set_xticks([dd.monthstart(m) for m in months]) >subplot.set_xticks([w.gmticks() for w in weeks], minor=True) >subplot.

Re: [Matplotlib-users] Smooth animations

2013-07-17 Thread Michael Droettboom
ms, 600 points need to be updated. On 13-07-04 05:11 PM, Michael Droettboom wrote: I see -- you want to basically interpolate between points? I don't think there's anything built in to matplotlib to do that, but you could always do that interpolation outside and just update the graph more

[Matplotlib-users] cbook.report_memory IOError

2013-07-16 Thread K . -Michael Aye
dlines() IOError: [Errno 4] Interrupted system call Is this cbook recipe maybe broken? Best, Michael -- See everything from the browser to the database with AppDynamics Get end-to-end visibility with application moni

Re: [Matplotlib-users] Smooth animations

2013-07-04 Thread Michael Droettboom
anymore, but my focus on this personal project of mine is vanity, not practicality ;) I hope this better explains what I am trying to accomplish... Thanks, --alex On 13-07-04 04:09 PM, Michael Droettboom wrote: Have you looked at the simple_anim.py example -- other than the networking piece,

Re: [Matplotlib-users] v.0.99.1.1 DeprecationWarning: Use the new widget gtk.Tooltip() self.tooltips = gtk.Tooltips()

2013-07-04 Thread Michael Droettboom
It looks like the version of Numpy installed on your machine is too old for the latest version of matplotlib. You'll need at least version 1.5, I believe (though we neglected to update the documentation about this requirement). Mike On 07/03/2013 05:13 PM, David Jonathan Pryce Morris wrote: >

Re: [Matplotlib-users] Smooth animations

2013-07-04 Thread Michael Droettboom
Have you looked at the simple_anim.py example -- other than the networking piece, it seems to do what you describe, and it's pretty fast. Maybe start from that and make changes until it gets slow in order to determine where the slowness comes from...? Mike On 07/03/2013 09:19 PM, v0idnull wr

[Matplotlib-users] matplotlib user survey 2013

2013-07-02 Thread Michael Droettboom
ing lists. Cheers, Michael Droettboom, and the matplotlib team -- This SF.net email is sponsored by Windows: Build for Windows Store. http://p.sf.net/sfu/windows-dev2dev___ Matplotlib

Re: [Matplotlib-users] Reports from SciPy 2013

2013-07-02 Thread Michael Droettboom
On 07/02/2013 10:04 AM, Jason Grout wrote: On 7/1/13 9:33 AM, Michael Droettboom wrote: SciPy 2013 was a great success. I didn't get good headcount at the matplotlib BOF, but it was a good number, and we had 15 participants at various points during the sprints. It was nice to se

[Matplotlib-users] Reports from SciPy 2013

2013-07-01 Thread Michael Droettboom
SciPy 2013 was a great success. I didn't get good headcount at the matplotlib BOF, but it was a good number, and we had 15 participants at various points during the sprints. It was nice to see the diversity of experience with matplotlib at the sprints, and I hope we oldtimers were helpful to

[Matplotlib-users] Matplotlib Sprints

2013-06-28 Thread Michael Droettboom
For those not in Austin who are interested in following along with the matplotlib sprint at Scipy, feel free to visit here: https://etherpad.mozilla.org/MatplotlibSprint Mike -- This SF.net email is sponsored by Windows

Re: [Matplotlib-users] Making an interactive plot faster

2013-06-24 Thread Michael Droettboom
Have you tried using "draw_idle"? That will schedule the draw for the next time the event loop is idle. Mike On 06/24/2013 07:39 AM, Thomas Robitaille wrote: > Hi everyone, > > The following shows an example of a simple data viewer which includes > a slider, a bitmap, and a scatter plot: > > ""

[Matplotlib-users] Good morning!

2013-06-20 Thread Michael Rawlins
http://bananajoestampabay.com/wp-content/themes/toolbox/youtube.php?cftzwj892mmzinhs.htm rawlins02 Michael Rawlins *** A man of principles. None of

[Matplotlib-users] Rasterize FancyArrowPatch etc.?

2013-06-14 Thread Michael McNeil Forbes
FancyArrowPatch objects to something not-fancy at some point once I have fixed the size of the axis, figure etc. so that I can then rasterize the appropriate elements only? Are the other behaviours noted in the co

[Matplotlib-users] Using a picture as a legend label

2013-06-12 Thread Michael Cracraft
A typical plot for me includes some simple line curves and a legend attempting to describe what apparatus that curve belongs to. Often the labels I give seem clear to me at the time, but even returning a month later to the plot, I'll be as lost as the next guy. A few of my colleagues have been pl

  1   2   3   4   5   6   7   8   9   10   >