SourceForge logo
SourceForge logo
Menu

matplotlib-users — Discussion related to using matplotlib

You can subscribe to this list here.

2003 Jan
Feb
Mar
Apr
May
(3)
Jun
Jul
Aug
(12)
Sep
(12)
Oct
(56)
Nov
(65)
Dec
(37)
2004 Jan
(59)
Feb
(78)
Mar
(153)
Apr
(205)
May
(184)
Jun
(123)
Jul
(171)
Aug
(156)
Sep
(190)
Oct
(120)
Nov
(154)
Dec
(223)
2005 Jan
(184)
Feb
(267)
Mar
(214)
Apr
(286)
May
(320)
Jun
(299)
Jul
(348)
Aug
(283)
Sep
(355)
Oct
(293)
Nov
(232)
Dec
(203)
2006 Jan
(352)
Feb
(358)
Mar
(403)
Apr
(313)
May
(165)
Jun
(281)
Jul
(316)
Aug
(228)
Sep
(279)
Oct
(243)
Nov
(315)
Dec
(345)
2007 Jan
(260)
Feb
(323)
Mar
(340)
Apr
(319)
May
(290)
Jun
(296)
Jul
(221)
Aug
(292)
Sep
(242)
Oct
(248)
Nov
(242)
Dec
(332)
2008 Jan
(312)
Feb
(359)
Mar
(454)
Apr
(287)
May
(340)
Jun
(450)
Jul
(403)
Aug
(324)
Sep
(349)
Oct
(385)
Nov
(363)
Dec
(437)
2009 Jan
(500)
Feb
(301)
Mar
(409)
Apr
(486)
May
(545)
Jun
(391)
Jul
(518)
Aug
(497)
Sep
(492)
Oct
(429)
Nov
(357)
Dec
(310)
2010 Jan
(371)
Feb
(657)
Mar
(519)
Apr
(432)
May
(312)
Jun
(416)
Jul
(477)
Aug
(386)
Sep
(419)
Oct
(435)
Nov
(320)
Dec
(202)
2011 Jan
(321)
Feb
(413)
Mar
(299)
Apr
(215)
May
(284)
Jun
(203)
Jul
(207)
Aug
(314)
Sep
(321)
Oct
(259)
Nov
(347)
Dec
(209)
2012 Jan
(322)
Feb
(414)
Mar
(377)
Apr
(179)
May
(173)
Jun
(234)
Jul
(295)
Aug
(239)
Sep
(276)
Oct
(355)
Nov
(144)
Dec
(108)
2013 Jan
(170)
Feb
(89)
Mar
(204)
Apr
(133)
May
(142)
Jun
(89)
Jul
(160)
Aug
(180)
Sep
(69)
Oct
(136)
Nov
(83)
Dec
(32)
2014 Jan
(71)
Feb
(90)
Mar
(161)
Apr
(117)
May
(78)
Jun
(94)
Jul
(60)
Aug
(83)
Sep
(102)
Oct
(132)
Nov
(154)
Dec
(96)
2015 Jan
(45)
Feb
(138)
Mar
(176)
Apr
(132)
May
(119)
Jun
(124)
Jul
(77)
Aug
(31)
Sep
(34)
Oct
(22)
Nov
(23)
Dec
(9)
2016 Jan
(26)
Feb
(17)
Mar
(10)
Apr
(8)
May
(4)
Jun
(8)
Jul
(6)
Aug
(5)
Sep
(9)
Oct
(4)
Nov
Dec
2017 Jan
(5)
Feb
(7)
Mar
(1)
Apr
(5)
May
Jun
(3)
Jul
(6)
Aug
(1)
Sep
Oct
(2)
Nov
(1)
Dec
2018 Jan
Feb
Mar
Apr
(1)
May
Jun
Jul
Aug
Sep
Oct
Nov
Dec
2020 Jan
Feb
Mar
Apr
May
(1)
Jun
Jul
Aug
Sep
Oct
Nov
Dec
2025 Jan
(1)
Feb
Mar
Apr
May
Jun
Jul
Aug
Sep
Oct
Nov
Dec
S M T W T F S





1
(5)
2
(6)
3
(4)
4
(9)
5
(7)
6
(16)
7
(5)
8
(10)
9
(2)
10
(3)
11
(9)
12
(1)
13
(13)
14
(1)
15
(13)
16
(5)
17
(3)
18
(14)
19
(17)
20
(14)
21
(15)
22
(6)
23
(6)
24
25
(4)
26
(4)
27
(4)
28
(11)
29
(7)
30
(1)

Showing 6 results of 6

From: bdb112 <boy...@an...> - 2011年04月02日 23:38:00
This bug or feature? is still in matplotlib 0.99.1.1 (Ubuntu 10.04 LTS)
More precisely scatter using symbols with zero area ('x', '+') will not
pick, regardless of the float value in picker.
Although this DOES work with plot, you can't vary the marker size between
points like you can with scatter.
I have also confirmed this in a version of the example in the docs
http://matplotlib.sourceforge.net/users/event_handling.html#picking-exercise
Which I could upload, but the code below is just fine.
If this is a feature, I suggest it be stated in the documentation.
Kyle Whitmer wrote:
> 
> I'm having trouble using picker on a scatter plots with various markers
> (e.g. + and x). It works with the plot command fine. What am I missing?
> Sample code below.
> 
> import numpy
> import pylab
> 
> def onpick(event):
> print 'Pick:',event.ind
> 
> fig = pylab.figure()
> ax = fig.add_subplot(111)
> 
> x1,y1 = numpy.random.random((2,100))
> series1=ax.plot(x1,y1,marker='x',color='b',linestyle='',label='plot',picker=5)
> x2,y2 = numpy.random.random((2,100))
> series2=ax.scatter(x2,y2,marker='x',color='g',label='scatter-X',picker=5)
> x3,y3 = numpy.random.random((2,100))
> series3=ax.scatter(x3,y3,marker='o',color='r',label='scatter-O',picker=5)
> 
> fig.canvas.mpl_connect('pick_event',onpick)
> pylab.legend()
> pylab.show()
> 
> -------------------------------------------------------------------------
> This SF.Net email is sponsored by the Moblin Your Move Developer's
> challenge
> Build the coolest Linux based applications with Moblin SDK & win great
> prizes
> Grand prize is a trip for two to an Open Source event anywhere in the
> world
> http://moblin-contest.org/redirect.php?banner_id=100&url=/
> _______________________________________________
> Matplotlib-users mailing list
> Mat...@li...
> https://lists.sourceforge.net/lists/listinfo/matplotlib-users
> 
> 
-- 
View this message in context: http://old.nabble.com/Can%27t-pick-on-various-scatter-markers-tp19140977p31305085.html
Sent from the matplotlib - users mailing list archive at Nabble.com.
From: bdb112 <boy...@an...> - 2011年04月02日 23:16:32
Straightfoward solution is to deselect zoom or pan by clicking those buttons
again. The cursor returns to the "Arrow" shape.
Any better solution?
marc desmarais-2 wrote:
> 
> I created a simple scatter plot and a service routine to print out the
> coordinates of the points I pick with the cursor (based on the demo). It
> works until I select the pan or zoom cursor. After I zoom or pan, I can
> no longer get back to the normal cursor which allows me to "pick" a
> circle. Even clicking "home" doesn't help.
> 
> The code is shown below
> 
> --------------------------------------------------------------------------------
> from matplotlib import figure,pyplot
> from numpy import linspace,sin,take
> 
> fig=pyplot.figure()
> 
> ax1=fig.add_subplot(1,1,1) # (numRows, numCols, plotNum)
> 
> t=linspace(0,10,100)
> y1=sin(5*t)
> y2=y1+sin(10*t)
> 
> line1=ax1.scatter(y1,y2,picker=True)
> 
> def onpick1(event):
>   ind = event.ind
>   print 'onpick1 scatter:', ind, take(y1, ind), take(y2, ind)
>   
> fig.canvas.mpl_connect('pick_event', onpick1)
> pyplot.show()  
> --------------------------------------------------------------------------------
> 
> this is based on the demo at
> 
> http://matplotlib.sourceforge.net/examples/event_handling/pick_event_demo.html?highlight=scatter
> 
> Marc Desmarais
> 
> 537 Park Av.
> 
> Long Beach, CA, 90814
> 
> 
> 
> (562) 712 8682 cell
> 
> 
> 
> ------------------------------------------------------------------------------
> 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. Discover what's new with 
> Crystal Reports now. http://p.sf.net/sfu/bobj-july
> _______________________________________________
> Matplotlib-users mailing list
> Mat...@li...
> https://lists.sourceforge.net/lists/listinfo/matplotlib-users
> 
> 
-- 
View this message in context: http://old.nabble.com/can%27t-picker-once-pan-or-zoom-chosen-tp25097973p31305018.html
Sent from the matplotlib - users mailing list archive at Nabble.com.
From: Andreas M. <and...@gm...> - 2011年04月02日 17:10:36
I would like to put a gtk.Button on top of a FigureCanvas. But whatever
I try the FigureCanvas stays always on top hiding the button.
Below is an example where I can change the order of buttons
by switching the following two lines
 lay.put(but1,360,260)
 lay.put(but2,360,275)
but this doesn't work for FigureCanvas
 lay.put(canvas,0,0)
Any help appreciated.
Ciao
Andreas
import gtk
import numpy as np
import pylab as mpl
from matplotlib.backends.backend_gtkagg import FigureCanvasGTKAgg as FigureCanvas
win = gtk.Window()
win.set_default_size(450,350)
fig = mpl.figure()
subfig = fig.add_subplot(1,1,1)
ax = subfig.plot([2,3,1])
canvas = FigureCanvas(fig)
canvas.set_size_request(400,300)
but1 = gtk.Button('111111111')
but2 = gtk.Button('222222222')
lay = gtk.Layout()
lay.put(canvas,0,0)
lay.put(but1,360,260)
lay.put(but2,360,275)
win.add(lay)
win.show_all()
win.connect('destroy', gtk.main_quit)
gtk.main()
From: Thomas R. <tho...@gm...> - 2011年04月02日 10:25:49
Hi,
I would like to set the zorder on a collection e.g. PatchCollection. By looking at the matplotlib source code in collections.py, I figured that it would be possible to set the zorder attribute of a collection manually, e.g.
p = PatchCollection(...)
p.zorder = ...
but I was wondering whether it would make sense to allow zorder to be passed as a keyword argument when initializing a collection, or when running ax.add_collection, or is there a reason that this was not done?
Cheers,
Tom
From: Oleksandr H. <guz...@gm...> - 2011年04月02日 00:57:09
Ok, it works ok with pcolormesh, sorry for bothering you.
--
Oleeksandr
2011年4月1日 sanGuziy <guz...@gm...>
>
> Dear list,
>
> I have a question concerning pcolor.
> I am trying to plot a huge 2d array 15000x10000.
> And in top I see that the program already uses 31Gb of ram and it grows.
> Is this expected behaviour?
> Why it needs so much memory?
> the sctipt is simple:
>
> import matplotlib
> import numpy as np
> import matplotlib.pyplot as plt
>
> from numpy.random import rand
>
> import mpl_toolkits.basemap as bm
>
>
> if __name__ == "__main__":
>
> print matplotlib.__version__
> print matplotlib.__revision__
> print matplotlib.__date__
>
>
> print 'basemap'
> print bm.__version__
>
> print 'numpy'
> print np.__version__
>
>
> x = rand(15000,10000)
> #print x
> plt.pcolor(x)
> plt.savefig('test_pcolor.png', bbox_inches = 'tight')
> print "Hello World"
>
> matplotlib version is:
> 1.0.0
> $Revision: 8503 $
> $Date: 2010年07月06日 08:56:31 -0500 (2010年7月06日) $
>
> should I update?
>
> thank you for any help
> --
> Oleksandr Huziy
> --
> View this message in context:
> http://old.nabble.com/pcolor-tp31300362p31300362.html
> Sent from the matplotlib - users mailing list archive at Nabble.com.
>
>
>
> ------------------------------------------------------------------------------
> Create and publish websites with WebMatrix
> Use the most popular FREE web apps or write code yourself;
> WebMatrix provides all the features you need to develop and
> publish your website. http://p.sf.net/sfu/ms-webmatrix-sf
> _______________________________________________
> Matplotlib-users mailing list
> Mat...@li...
> https://lists.sourceforge.net/lists/listinfo/matplotlib-users
>
From: sanGuziy <guz...@gm...> - 2011年04月02日 00:42:06
Dear list,
I have a question concerning pcolor.
I am trying to plot a huge 2d array 15000x10000.
And in top I see that the program already uses 31Gb of ram and it grows.
Is this expected behaviour?
Why it needs so much memory?
the sctipt is simple:
import matplotlib
import numpy as np
import matplotlib.pyplot as plt
from numpy.random import rand
import mpl_toolkits.basemap as bm 
if __name__ == "__main__":
 print matplotlib.__version__
 print matplotlib.__revision__
 print matplotlib.__date__
 
 
 print 'basemap'
 print bm.__version__
 
 print 'numpy'
 print np.__version__
 
 x = rand(15000,10000)
 #print x
 plt.pcolor(x)
 plt.savefig('test_pcolor.png', bbox_inches = 'tight')
 print "Hello World"
matplotlib version is:
1.0.0
$Revision: 8503 $
$Date: 2010年07月06日 08:56:31 -0500 (2010年7月06日) $
should I update?
thank you for any help
--
Oleksandr Huziy
-- 
View this message in context: http://old.nabble.com/pcolor-tp31300362p31300362.html
Sent from the matplotlib - users mailing list archive at Nabble.com.

Showing 6 results of 6

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.
Thanks for helping keep SourceForge clean.
X





Briefly describe the problem (required):
Upload screenshot of ad (required):
Select a file, or drag & drop file here.
Screenshot instructions:

Click URL instructions:
Right-click on the ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)

More information about our ad policies

Ad destination/click URL:

AltStyle によって変換されたページ (->オリジナル) /