SourceForge logo
SourceForge logo
Menu

matplotlib-devel — matplotlib developers

You can subscribe to this list here.

2003 Jan
Feb
Mar
Apr
May
Jun
Jul
Aug
Sep
Oct
(1)
Nov
(33)
Dec
(20)
2004 Jan
(7)
Feb
(44)
Mar
(51)
Apr
(43)
May
(43)
Jun
(36)
Jul
(61)
Aug
(44)
Sep
(25)
Oct
(82)
Nov
(97)
Dec
(47)
2005 Jan
(77)
Feb
(143)
Mar
(42)
Apr
(31)
May
(93)
Jun
(93)
Jul
(35)
Aug
(78)
Sep
(56)
Oct
(44)
Nov
(72)
Dec
(75)
2006 Jan
(116)
Feb
(99)
Mar
(181)
Apr
(171)
May
(112)
Jun
(86)
Jul
(91)
Aug
(111)
Sep
(77)
Oct
(72)
Nov
(57)
Dec
(51)
2007 Jan
(64)
Feb
(116)
Mar
(70)
Apr
(74)
May
(53)
Jun
(40)
Jul
(519)
Aug
(151)
Sep
(132)
Oct
(74)
Nov
(282)
Dec
(190)
2008 Jan
(141)
Feb
(67)
Mar
(69)
Apr
(96)
May
(227)
Jun
(404)
Jul
(399)
Aug
(96)
Sep
(120)
Oct
(205)
Nov
(126)
Dec
(261)
2009 Jan
(136)
Feb
(136)
Mar
(119)
Apr
(124)
May
(155)
Jun
(98)
Jul
(136)
Aug
(292)
Sep
(174)
Oct
(126)
Nov
(126)
Dec
(79)
2010 Jan
(109)
Feb
(83)
Mar
(139)
Apr
(91)
May
(79)
Jun
(164)
Jul
(184)
Aug
(146)
Sep
(163)
Oct
(128)
Nov
(70)
Dec
(73)
2011 Jan
(235)
Feb
(165)
Mar
(147)
Apr
(86)
May
(74)
Jun
(118)
Jul
(65)
Aug
(75)
Sep
(162)
Oct
(94)
Nov
(48)
Dec
(44)
2012 Jan
(49)
Feb
(40)
Mar
(88)
Apr
(35)
May
(52)
Jun
(69)
Jul
(90)
Aug
(123)
Sep
(112)
Oct
(120)
Nov
(105)
Dec
(116)
2013 Jan
(76)
Feb
(26)
Mar
(78)
Apr
(43)
May
(61)
Jun
(53)
Jul
(147)
Aug
(85)
Sep
(83)
Oct
(122)
Nov
(18)
Dec
(27)
2014 Jan
(58)
Feb
(25)
Mar
(49)
Apr
(17)
May
(29)
Jun
(39)
Jul
(53)
Aug
(52)
Sep
(35)
Oct
(47)
Nov
(110)
Dec
(27)
2015 Jan
(50)
Feb
(93)
Mar
(96)
Apr
(30)
May
(55)
Jun
(83)
Jul
(44)
Aug
(8)
Sep
(5)
Oct
Nov
(1)
Dec
(1)
2016 Jan
Feb
Mar
(1)
Apr
May
Jun
(2)
Jul
Aug
(3)
Sep
(1)
Oct
(3)
Nov
Dec
2017 Jan
Feb
(5)
Mar
Apr
May
Jun
Jul
(3)
Aug
Sep
(7)
Oct
Nov
Dec
2018 Jan
Feb
Mar
Apr
May
Jun
Jul
(2)
Aug
Sep
Oct
Nov
Dec
S M T W T F S
1
(4)
2
(4)
3
(13)
4
(4)
5
(1)
6
(5)
7
(5)
8
(6)
9
(20)
10
(1)
11
12
(11)
13
(4)
14
(2)
15
(1)
16
(1)
17
(4)
18
(5)
19
(5)
20
21
(1)
22
(1)
23
(2)
24
25
(6)
26
(1)
27
28
29
(7)
30
(12)





Showing 5 results of 5

From: David Warde-F. <dw...@cs...> - 2009年11月19日 23:58:01
On 19-Nov-09, at 5:36 PM, Scot Denhalter wrote:
> On Thu, Nov 19, 2009 at 2:46 PM, Eric Firing <ef...@ha...> 
> wrote:
>>
>> You don't need a fortran compiler for numpy, even if you are building
>> from source; and you probably don't need to build from source. Did 
>> you
>> try the suggested binary packages for the Mac as listed on the nltk 
>> site?
>>
>> http://www.nltk.org/download
> Yes, I downloaded the files recommended on that webpage. The tar.gz 
> files
> unpack, but they do not install, and I am too much of a newbie to 
> figure out
> how to install the files in the unpacked folder. No matter where I 
> placed
> the numpy folder, I couldn't get Python 2.6 to find and install numpy.
>
> Nevertheless, I did finally find .dmg downloads for numpy and 
> matplotlib and
> they installed without my having to get involved.
>
> But when I run a dispersion_plot function, I get an error message from
> Python, which I don't understand:
>
> Warning (from warnings module):
> File
> "/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/ 
> site-packages/matplotlib/dates.py",
> line 91
> import pytz.zoneinfo
> ImportWarning: Not importing directory
> '/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/ 
> site-packages/pytz/zoneinfo':
> missing __init__.py
>
> Python launches the dispersion plot in another window as it apparently
> should, so why am I getting an error message? Perhaps, those of you 
> who
> program in Python can explain this to me.
I don't know why it would be trying to import zoneinfo since it 
doesn't seem to be a code directory, it just contains various data for 
timezone stuff. I'm CC'ing matplotlib-devel since that's really a 
matplotlib problem and not a Python or NumPy one.
David
P.S. please don't top-post replies, it makes things hard to follow.
From: Michael D. <md...@st...> - 2009年11月19日 20:25:46
Yes, for efficiency reasons matplotlib will use a reference to original 
data whenever possible, rather than copying it. Also, when using the 
pylab/pyplot API, matplotlib figures also stay around until they are 
explicitly deleted. You may need an explicit call to "clf('all')" to 
remove the figures, and thus references to the memmap'd file.
However, my advice would be to just not use memmap. I can't imagine 
matplotlib performs very well if the data can't all fit in memory, so 
you might as well just load it all into memory anyway.
Mike
Mathew Yeates wrote:
> There is definitely something wrong with matplotlib/numpy. Consider 
> the following
> >from numpy import *
> >mydata=memmap('map.dat',dtype=float64,mode='w+',shape=56566500)
> > del mydata
>
> I can now remove the file map.dat with (from the command line) $rm map.dat
>
> However
> If I plot mydata before the line
> > del mydata
>
>
> I can't get rid of the file until I exit python!!
> Does matplotlib keep a reference to the data? How can I remove this 
> reference?
>
> Mathew
> ------------------------------------------------------------------------
>
> ------------------------------------------------------------------------------
> 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-devel mailing list
> Mat...@li...
> https://lists.sourceforge.net/lists/listinfo/matplotlib-devel
> 
-- 
Michael Droettboom
Science Software Branch
Operations and Engineering Division
Space Telescope Science Institute
Operated by AURA for NASA
From: Mathew Y. <mat...@gm...> - 2009年11月19日 17:52:27
There is definitely something wrong with matplotlib/numpy. Consider the
following
>from numpy import *
>mydata=memmap('map.dat',dtype=float64,mode='w+',shape=56566500)
> del mydata
I can now remove the file map.dat with (from the command line) $rm map.dat
However
If I plot mydata before the line
> del mydata
I can't get rid of the file until I exit python!!
Does matplotlib keep a reference to the data? How can I remove this
reference?
Mathew
From: John H. <jd...@gm...> - 2009年11月19日 15:14:13
On Thu, Nov 19, 2009 at 6:02 AM, Ensitof <ens...@gm...> wrote:
>
> I got the same problem and posted my question in this forum
> http://www.developpez.net/forums/d836964/autres-langages/python-zope/calcul-scientifique/matplotlib-scatter3d-colorisation-fonction-z/
> (here) a few days ago... My question receives a lot of visits but no
> reaction however I think it may be an important information for people
> wanting to use matplotlib efficiently. Please let me know if you can find
> anything about it :confused: Even if everything works perfect with 2D
> scatter I can't solve this issue with scatter3D. Knowing that's it's a bug
> should already be a nice answer...
>
Please file a bug on the tracker and I will assign it to Reinier
http://sourceforge.net/tracker/?atid=560720&group_id=80706&func=browse
Thanks,
JDH
From: Ensitof <ens...@gm...> - 2009年11月19日 12:02:40
I got the same problem and posted my question in this forum 
http://www.developpez.net/forums/d836964/autres-langages/python-zope/calcul-scientifique/matplotlib-scatter3d-colorisation-fonction-z/
(here) a few days ago... My question receives a lot of visits but no
reaction however I think it may be an important information for people
wanting to use matplotlib efficiently. Please let me know if you can find
anything about it :confused: Even if everything works perfect with 2D
scatter I can't solve this issue with scatter3D. Knowing that's it's a bug
should already be a nice answer...
Luc Estebanez wrote:
> 
> Dear All,
> 
> I am trying to use the new 3D facilities offered by Matplotlib.
> I know the mlab module of Mayavi, but I am interested in the vector 
> export facilities offered by matplotlib.
> 
> Here is my issue : I can't manage to vary the color and/or size of the 
> markers when doing 3D scatter plots :
> 
> fig = plt.figure()
> ax = Axes3D(fig)
> ax.scatter([1,2,3],[3,1,2],[1,2,0],c='r',s=[4,10,20])
> 
> The code above doesn't show size changes for each marker, just like :
> 
> ax.scatter([1,2,3],[3,1,2],[1,2,0])
> 
> Does anyone have an idea of what is going on ?
> 
> Thanks a lot,
> luc
> 
> (I already posted this issue on the user list, but it seems to be a bug, 
> and no one their seemed very interested in this issue either...)
> 
> 
> 
> ---------------
> luc Estebanez
> Graduate Student,
> ENS, Paris
> 
> ------------------------------------------------------------------------------
> 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-devel mailing list
> Mat...@li...
> https://lists.sourceforge.net/lists/listinfo/matplotlib-devel
> 
> 
-- 
View this message in context: http://old.nabble.com/3D-Axes-scatter-%3A-no-possibility-to-vary-color-size-of-markers-tp26335289p26421301.html
Sent from the matplotlib - devel mailing list archive at Nabble.com.

Showing 5 results of 5

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 によって変換されたページ (->オリジナル) /