Re: [Matplotlib-users] third-party mpl widgets/tools?

2014-10-06 Thread Matt Sundquist
Hey Ben, Sounds like a cool list. Plotly (https://plot.ly) turns matplotlib plots into interactive, D3.js plots and translates the figure into R, MATLAB, and Julia. Plotly makes the data and figure editable in a web-based GUI, assigns the plot to a URL (e.g.: https://plot.ly/~PlotBot/182), and le

[Matplotlib-users] Converting matplotlib graphs to Plotly: D3 style graphs, online

2014-02-09 Thread Matt Sundquist
GitHub thread <https://github.com/plotly/python-api/issues/3>). So we'd very much appreciate your advice and suggestions. As a new team, getting suggestions from folks with insider knowledge goes a long way. All my best, Matt --

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

2013-09-03 Thread Matt Terry
environment variable, perhaps). Travis would just need to poke mpl_on_travis_mac for each pull request. -matt On Fri, Aug 30, 2013 at 8:46 AM, Michael Droettboom wrote: > BTW: I've got uploading of test results to S3 working on the main > matplotlib repository. It would be cool to d

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

2013-08-29 Thread Matt Terry
(Replying to the list, rather than just George) On Aug 29, 2013 8:18 AM, "Matt Terry" wrote: > > I have 15/17 variants working. each pulling binaries/source from some combination of macports/brew/python.org/pip on python 2.6, 2.7, 3.2, and 3.3. > > https://travis-ci.org/mrt

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

2013-08-23 Thread Matt Terry
[1] http://www.libpng.org/pub/png/libpng.html [2] http://www.freetype.org/index.html [3] http://xquartz.macosforge.org/landing/ [4] http://www.astro.washington.edu/users/rowen/BuildingMatplotlibForMac.html [5] http://www.freedesktop.org/wiki/Software/pkg-config/ On Thu, Aug 22, 2013 at 8:24 PM, Matt Terry wrote

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

2013-08-22 Thread Matt Terry
wed up when I installed XQuartz, but I don't have a clean image to compare against. The with-X / without-X builds would be there to check that the default search paths are compatible with common environments. -matt --

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

2013-08-20 Thread Matt Terry
ories, where are the corners where things tend to break? -matt On Tue, Aug 20, 2013 at 12:09 PM, Russell E. Owen wrote: > A few hints: > > If you just want to build matplotlib for your own computer (and don't > care about making an installer that will work on anybody else

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

2013-08-16 Thread Matt Terry
I was looking into the TravisCI Mac testing environment. Right now, you can only run tests on a single os. You also trigger a Mac build by declaring your language to be objective-c. There are probably more q quirks, but that's what I've found thus far. -matt On Aug 16, 2013 12:45 PM

Re: [Matplotlib-users] key_press_events on macosx

2013-06-05 Thread Matt Terry
urceforge.net> > Cc: > Sent: Thursday, June 6, 2013 4:50 AM > Subject: Re: [Matplotlib-users] key_press_events on macosx > > > On Jun 5, 2013, at 2:51 PM, Matt Terry wrote: > > > Hi, > > I'm working on a TextBox widget and have run into problems registering &g

[Matplotlib-users] key_press_events on macosx

2013-06-05 Thread Matt Terry
owing script; click the figure and bang on the keyboard. Mouse clicks and keyboard clicks should echo on the screen. I'm using mpl 1.2.1 with Anaconda. -matt import pylab as plt plt.switch_backend('macosx') def print_event(event): print 'event', event ax = plt.subplot(1

Re: [Matplotlib-users] backend with edition capabilities

2012-03-01 Thread Matt Newville
ge displays, it allows changing the colour table, smoothing, and rotating and so on. It is definitely not as complete as all of matplotlib, and I'm sure it could be improved. Still, it can serve many simple plotting needs where one wants to give the end-us

Re: [Matplotlib-users] use shapefile to create a mask?

2011-11-03 Thread Matt S.
I've used Pyshapelib and Polygon to do this type of analysis in the past. Thuban may get ya what you need. On Thu, Nov 3, 2011 at 3:40 PM, questions anon wrote: > Hi All, > Is there a way to select only the values within a particular shapefile to > analyse. > I would like to do something like: >

Re: [Matplotlib-users] Memory leak - canvas.draw() + pyqt4

2011-10-08 Thread Matt Earnshaw
http://matplotlib.sourceforge.net/examples/user_interfaces/embedding_in_qt4.html - Or use the work around: import matplotlib # Free memory matplotlib.pyplot.close() Regards Matt Earnshaw On Sat, Oct 8, 2011 at 9:22 PM, wrote: > -- > Message: 7 > Date: Sat, 08 Oct

[Matplotlib-users] canvas.draw() memory issue? (PyQt4)

2011-09-09 Thread Matt Earnshaw
would not have been reintroduced in going to .5). Can someone confirm or deny replication of this issue with their setup and/or offer a solution? Thanks very much Matt Earnshaw -- Why Cloud-Based Security and Archiving

Re: [Matplotlib-users] it is possible to use basemap to create regular spaced lat/lon grids?

2011-09-09 Thread Matt Funk
On 9/9/2011 6:42 AM, Scott Sinclair wrote: > On 8 September 2011 19:20, Matt Funk wrote: >> Hi, >> sorry that it has taken me so long to reply. Anyway, i could be wrong, but i >> don't think that the code: >> xi = np.linspace(llcrnlon,urcrnlon,1000) >>

Re: [Matplotlib-users] it is possible to use basemap to create regular spaced lat/lon grids?

2011-09-08 Thread Matt Funk
id. I had to upgrade to the 64-bit python to be able to access enough memory. thanks matt On 9/6/2011 12:36 PM, Aman Thakral wrote: > Hi Matt, > > Something like this?: > > def create_map(ax, llcrnrlon,llcrnrlat,urcrnrlon,urcrnrlat): > m = > Basemap(llcrnrlon=llcrnrlon,llc

Re: [Matplotlib-users] it is possible to use basemap to create regular spaced lat/lon grids?

2011-09-06 Thread Matt Funk
different. Is one a wrapper for the other? thanks matt On 9/6/2011 12:36 PM, Aman Thakral wrote: > Hi Matt, > > Something like this?: > > def create_map(ax, llcrnrlon,llcrnrlat,urcrnrlon,urcrnrlat): > m = > Basemap(llcrnrlon=llcrnrlon,llcrnrlat=llcrnrlat,urcrnrlo

[Matplotlib-users] it is possible to use basemap to create regular spaced lat/lon grids?

2011-09-06 Thread Matt Funk
by end user or more like internal fcns (the makegrid fcn for example). Any advice would be appreciated. thanks matt -- Special Offer -- Download ArcSight Logger for FREE! Finally, a world-class log management solution at

Re: [Matplotlib-users] setting the default markerfacecolor

2011-04-08 Thread Matt Funk
;lines.color': 'b', 'text.latex.preview': False, 'figure.subplot.top': 0.90002, 'pdf.use14corefonts': False, 'legend.markerscale': 1.0, 'patch.antialiased': True, 'font.style': 'normal', 'backend_fa

[Matplotlib-users] setting the default markerfacecolor

2011-04-07 Thread Matt Funk
mpl.rcParams['lines.markersize'] = 20 But i would like to set the markerfacecolor in such a way but it is not included in rcParams. I would really like to avoid setting it in each individual plot call. Is there a way to change the default at the start of the script? t

[Matplotlib-users] Matplotlib wont compile on ubuntu

2010-12-03 Thread Matt
LINUX Linux ubuntu 2.6.35-22-generic #33-Ubuntu SMP Sun Sep 19 20:34:50 UTC 2010 i686 GNU/Linux GCC gcc (Ubuntu/Linaro 4.4.4-14ubuntu5) 4.4.5 Copyright (C) 2010 Free Software Foundation, Inc. MATPLOTLIB ubu...@ubuntu:~/Desktop/mp$ python -c `import matplotlib; print matplotlib.__version_

Re: [Matplotlib-users] Nasty mouse event problem with wxPython

2010-05-07 Thread Matt Newville
Hi Soren, 2010/5/6 Søren Nielsen : > Thanks Matt, > > The wx.ReleaseMouse() event when called before the wx.MessageBox also works > great. > > I have a similar problem when I want to make a popup menu after the user has > clicked on a patch (through the pick event) .. it wor

Re: [Matplotlib-users] Nasty mouse event problem with wxPython

2010-05-03 Thread Matt Newville
I haven't fully explored this problem myself, but I am no longer experiencing it... Cheers, --Matt Newville -- ___ Matplotlib-users mailing list Matplotlib-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Re: [Matplotlib-users] psd question

2009-01-14 Thread Fago, Matt - AES
will look quite different. Otherwise, what version of matplotlib are you using? The most recent release has a fix to properly scale the PSD output. For such a high sampling frequency the fix will make a huge difference. - Matt This e-mail and any files transmitted with it may be proprietary a

Re: [Matplotlib-users] Matplotlib PSD bug?

2008-12-09 Thread Fago, Matt - AES
. Fernando might have a point about unit tests: perhaps we could somehow get a few numerical values out of Matlab to compare to in a test? Regardless, much better. Thank you! - Matt This e-mail and any files transmitted with it may be proprietary and are intended solely for the use of the indi

Re: [Matplotlib-users] Matplotlib PSD bug?

2008-12-08 Thread Fago, Matt - AES
ubmit a patch, or shall I look into it? If I submit a patch, does matplotlib require a copyright assignment? Thanks, Matt From: Ryan May [EMAIL PROTECTED] Sent: Monday, December 01, 2008 3:31 PM To: Fago, Matt - AES Cc: Matplotlib Users Subject: Re: [Matpl

Re: [Matplotlib-users] Ovality of a perturbed circular path

2008-12-02 Thread Matt Foster
ks ? >> >> ylim(0, 2) >> yticks(arange(0, 2, 0.25)) > Thank you for your reply. > > It is on the right path. > > Is it possible to restrict the view to an annulus > 0.75 < r < 1.25 ? > Sorry, I'm not sure about

Re: [Matplotlib-users] Matplotlib PSD bug?

2008-12-01 Thread Fago, Matt - AES
> From: Ryan May [mailto:[EMAIL PROTECTED] > Fago, Matt - AES wrote: > > I suppose the issue is: what is correct? Or is it a matter of > definition? [...] > Yeah, scaling by a factor of two for one-sided is definitely correct now > that I think about it. Note, however, th

Re: [Matplotlib-users] Matplotlib PSD bug?

2008-12-01 Thread Fago, Matt - AES
ling. Note that the Matplotlib results also seem to have significantly less frequency resolution than the Matlab results. Is this the case, or am I not using noffset, nfft, and pad_to correctly? Thanks for your help, Matt From: Ryan May [EMAIL PROTECTED] Se

Re: [Matplotlib-users] Ovality of a perturbed circular path

2008-12-01 Thread Matt Foster
lar(theta,(r+noise)/r) ylim(0, 2) yticks(arange(0, 2, 0.25)) show() The kind of thing you're after? Cheers, Matt -- Matt Foster | http://hackerific.net - This SF.Net email is sponsored by the Moblin Your Move Devel

Re: [Matplotlib-users] Matplotlib PSD bug?

2008-12-01 Thread Fago, Matt - AES
...) Thanks, Matt From: Fago, Matt - AES Sent: Tuesday, November 25, 2008 1:04 PM To: matplotlib-users@lists.sourceforge.net Subject: Matplotlib PSD bug? [I'm not sure if this is best in 'devel' or 'users'] I'm trying to compute PSDs

[Matplotlib-users] Matplotlib PSD bug?

2008-11-25 Thread Fago, Matt - AES
Bendat and Piersol I cannot be sure that this is the correct fix. Does anyone else have any insight? When is the next release planned, and how likely is a fix? Thanks, Matt This e-mail and any files transmitted with it may be proprietary and are intended solely for the use of the individu

Re: [Matplotlib-users] Animated bar graph question

2008-06-23 Thread Matt C
thing like: line, = bar(i + 0.25 , name_value_dict[key], color='red'), and calling line.set_y(), but with similar issues. Any other pointers would be greatly appreciated. -Matt On Sun, Jun 22, 2008 at 2:54 PM, Ryan May <[EMAIL PROTECTED]> wrote: > Matt C wrote: > >> I&

[Matplotlib-users] Animated bar graph question

2008-06-22 Thread Matt C
e set to on) bar(10+0.25, 4) ...shows a new bar with a y value of 4, but the old bar (value 10) is still painted. As a result, it doesn't look quite right. Is there an easy way to clear the old max value bar? Thanks for any advice. Regards, Matt --

Re: [Matplotlib-users] Matplotlib performance

2008-04-15 Thread Matt McCormick
> I agree that exploration of large data sets is an important application, > and that we need to speed it up. A couple days ago I added automatic > subsetting (but not decimation--although this could be added easily) to > image drawing, and that made a big difference for panning and zooming > u

[Matplotlib-users] saving from GUI versus savefig, rc figure.facecolor, figure.edgecolor

2008-04-08 Thread Matt McCormick
Hi, Trying to save a figure with a black figure.facecolor, black figure.edgecolor. If I savefig(), it follows the rc file settings, but if save from the button in the GUI, I get a white figure.facecolor and figure.edgecolor. I tried changing the GUI backends to no avail. Currently using Qt4A

[Matplotlib-users] Simple Matplotlib usage and Gnuplot

2007-08-27 Thread Matt Fago
the file, or set explicitly. Similarly for the number of header rows, etc. Are there any plans for such a feature, or does it already exist? Probably would not be too difficult to implement if no one else is planning to do so. Thanks, Matt -

[Matplotlib-users] Missing undocumented Matplotlib prerequisites on Windows (?)

2007-08-27 Thread Matt Fago
above. I usually install the Python 2.5 version on a Windows machine that has Visual Studio and personally have not run into this problem, but ran into it when installing on a User's machine. I don't recall seeing this on matplotlib.sf.net. Perhaps it is a known issue. Th

[Matplotlib-users] Consistent cross-platform plotting

2007-08-27 Thread Matt Fago
g the requirements for GTKAgg on the Mac, is it possible to obtain the same behavior on both platforms? Thanks, Matt - This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop

[Matplotlib-users] figure in wxpython

2007-06-29 Thread Matt Newville
gni.phys.iit.edu/~kmcivor/wxmpl/ and/or my own PlotPanel code from MPlot: http://cars9.uchicago.edu/~newville/Python/MPlot/ and/or read http://www.scipy.org/Cookbook/Matplotlib/EmbeddingInWx for more hints and examples. Cheers, --Matt Newville -

Re: [Matplotlib-users] SVG vs PNG

2007-05-11 Thread Matt Newville
think pylab may not give you access to the Copy_to_Clipboard() method. --Matt Newville - This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express and take control of your XML. No l

[Matplotlib-users] segfault with TkAgg and any GUI in 2.5

2007-03-27 Thread Matt Beal
this problem). "Annoying" debug information below: Thanks! -Matt hostname:~/.matplotlib>cat test.py from pylab import * plot([1,2,3]) show() hostname:~/.matplotlib>python test.py --verbose-debug-annoying -dTkAgg matplotlib data path /python2.5/site-packages/matplotlib/mpl-data

Re: [Matplotlib-users] trying to get screen coordinates for bars

2007-02-25 Thread Matt Auger
x320 based upon the PNG being a 4"x4" image). Matt Rajarshi Guha-3 wrote: > > Hi, I'm trying to generate a barplot and subsequently dumping it to a > PNG file and making an HTML imagemap out of it. I've pasted my code > below. > > The problem is that the

Re: [Matplotlib-users] show()

2006-09-06 Thread Matt
Is there a method of using the show() command more than once in a script? I know that it should be called once all commands have been entered for the graph, but I'm wondering if there is a way of resetting this so that I can call show() a second time without my program crashing. Thanks,

Re: [Matplotlib-users] plotting constant functions

2006-09-05 Thread Matt
Use this to plot it: plot([x], [f(x)])you need the square brackets. -Matt --- "Davidlohr Bueso A." <[EMAIL PROTECTED]> wrote: > Hi, > > I am having trouble graphing constant functions in > matplotlib (a simple > y = 2). Here is a simple test script I&

[Matplotlib-users] pylab runtime error

2006-09-05 Thread Matt
attempt to plot a second figure, the whole program crashes. Also, I am working in pythonwin. Thanks in advance, Matt __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com