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

Showing 11 results of 11

From: Benjamin R. <ben...@ou...> - 2010年12月03日 22:20:16
On Thu, Dec 2, 2010 at 11:22 AM, Burak TUYSUZ <bur...@gm...> wrote:
> Hi all,
> I am plotting a 3d surface but at the axis scientific notation works
> but I can not see the exponential part at the end of the axis.
> I mean it does simplifies
> 9.9*e^5 15*e^5 ...
> to
> 9.9 15
> but there is no e^5 at the end of the axis that you need to multiply each
> value
> I am tired of manually adding that to the plots. How can I automatically
> add the divider to the top of each axis.
> Thank you in advance
> -Burak
>
> Here is the code
>
>
> formatter = ScalarFormatter(useMathText=True, useOffset=True)
> formatter.set_scientific(True)
>
> fig = plt.figure(figsize=(21,9.5))
> ax = fig.add_subplot(1,2,1, projection='3d', azim=180)
> ax.set_xlabel('Doppler')
> ax.set_ylabel('Delay')
> ax.set_zlabel('')
>
> ax.w_xaxis.set_major_formatter(formatter)
> ax.w_yaxis.set_major_formatter(formatter)
>
>
Burak,
I can confirm your bug. I have traced it down and it appears that printing
the offset text (the 'e^5') is not even implemented. I will look into
seeing how to implement this in mplot3d.
Ben Root
From: C M <cmp...@gm...> - 2010年12月03日 21:24:29
Hello. I've decided to upgrade to matplotlib 1.0, but I'll need to fix a
few problems that have come up. I was hoping I could get some help on this
here.
First thing is, I have a bit of point picker code that was written by JJ on
this list some time back that has been working well. This is the start of
it:
def contains_points(self, line, mouseevent):
 line.pickradius = 5
 # Make sure we have data to plot
 if line._invalid:
 line.recache()
 if len(line._xy)==0: return False,{}
But I am getting an error:
AttributeError: 'Line2D' object has no attribute '_invalid'
Can someone please tell me what the right method is now? And how I can
learn about these sorts of changes on my own?
Thank you,
Che
From: Stan W. <sta...@nr...> - 2010年12月03日 19:28:53
> From: G. Durin [mailto:g....@in...] 
> Sent: Tuesday, November 23, 2010 08:34
<snip>
> # Update the error bars
> barlinecols[0].set_segments(zip(zip(x-xerr,y), zip(x+xerr,y)))
> barlinecols[1].set_segments(zip(zip(x,y-yerr), zip(x,y+yerr)))
> 
> The last lines are a little clumsy, but I could not find a 
> better way. 
I'm glad you were able to solve your problem. An alternative to the above
lines is
 barlinecols[0].set_segments( 
 np.array([[x - xerr, y], 
 [x + xerr, y]]).transpose((2, 0, 1)) )
and likewise for y. The transposition produces a depth stack of 2-by-2
arrays.
From: Justin M. <jn...@gm...> - 2010年12月03日 16:02:33
On Wed, Dec 1, 2010 at 11:58 AM, Justin McCann <jn...@gm...> wrote:
> Is there a straightforward way to limit the legend only to lines that
> appear within the current display limits? I have a plot that has too
> many separate data series to show on the legend at once, but once I
> zoom in it would be good to re-set the legend to show only the visible
> data points/lines.
>
> I guess the way to do that is:
>
> - catch the DrawEvent
> - call get_xlim() and get_ylim() to get the new bounds
> - figure out which lines are within the bounds and add them to a new
> legend. I could run through each line and compare xlim/ylim with
> line.get_xydata(); is there already a function to do this?
This seems to do the trick, but might be a bit too clever. I'm not
sure if get_children() (or findobjs) is the right call to retrieve all
the plot elements.
def add_legend_viewlim(ax, fontsize='xx-small', **kwargs):
 """Reset the legend in ax to only display lines that are currenlty
visible"""
 label_objs = []
 label_texts = []
 font = matplotlib.font_manager.FontProperties(size=fontsize);
 for obj in ax.get_children():
 if not hasattr(obj, 'get_xydata'): continue
 if ax.viewLim.overlaps(matplotlib.transforms.Bbox(obj.get_xydata())):
 label = obj.get_label()
 if (label is not None) and (label != ''):
 label_objs.append(obj)
 label_texts.append(label)
 leg = ax.legend(label_objs, label_texts, prop=font, **kwargs)
 return leg
From: Benjamin R. <ben...@ou...> - 2010年12月03日 15:15:44
On Fri, Dec 3, 2010 at 9:06 AM, Matt <mx...@ma...> wrote:
> Thanks so much, Ben, that did work.
>
> Matt
>
> On Fri, Dec 3, 2010 at 2:57 PM, Benjamin Root <ben...@ou...> wrote:
> > On Fri, Dec 3, 2010 at 8:49 AM, Matt <mx...@ma...> wrote:
> >>
> >> 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
> >>
> >> ubuntu@ubuntu:~/Desktop/mp$ python -c `import matplotlib; print
> >> matplotlib.__version__`
> >> The program 'import' can be found in the following packages:
> >> * imagemagick
> >> * graphicsmagick-imagemagick-compat (You will have to enable
> >> component called 'universe')
> >> Try: sudo apt-get install <selected package>
> >> Warning: unknown mime-type for "matplotlib.__version__" -- using
> >> "application/octet-stream"
> >> Error: no such file "matplotlib.__version__"
> >> Argument expected for the -c option
> >> usage: python [option] ... [-c cmd | -m mod | file | -] [arg] ...
> >> Try `python -h' for more information.
> >>
> >>
> >>
> >> OUTPUT
> >>
> >> ubuntu@ubuntu:~/Desktop/mp$ sudo apt-get install python-matplotlib
> >> Reading package lists... Done
> >> Building dependency tree
> >> Reading state information... Done
> >> Package python-matplotlib is not available, but is referred to by
> >> another package.
> >> This may mean that the package is missing, has been obsoleted, or
> >> is only available from another source
> >>
> >> E: Package 'python-matplotlib' has no installation candidate
> >>
> >
> > Matt, in your first command, you used a backtick, which is different from
> a
> > single quote. A phrase quoted by a backtick will execute as a shell
> command
> > and put its output in place for the rest of the shell command.
> >
> > Then, the reason you probably can't find matplotlib is that you probably
> > don't have the other repos turned on. I forget which repo matplotlib is
> in,
> > but it might be the "universe" repo. If you open the synaptic package
> > manager and view the available repositories (it is in the menu items, I
> > forget which), you can turn on other Ubuntu repos.
> >
> > Let us know how that works for you.
> >
> > Ben Root
> >
> >
>
Good, glad to be of help.
Ben Root
From: Benjamin R. <ben...@ou...> - 2010年12月03日 14:57:30
On Fri, Dec 3, 2010 at 8:49 AM, Matt <mx...@ma...> wrote:
> 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
>
> ubuntu@ubuntu:~/Desktop/mp$ python -c `import matplotlib; print
> matplotlib.__version__`
> The program 'import' can be found in the following packages:
> * imagemagick
> * graphicsmagick-imagemagick-compat (You will have to enable
> component called 'universe')
> Try: sudo apt-get install <selected package>
> Warning: unknown mime-type for "matplotlib.__version__" -- using
> "application/octet-stream"
> Error: no such file "matplotlib.__version__"
> Argument expected for the -c option
> usage: python [option] ... [-c cmd | -m mod | file | -] [arg] ...
> Try `python -h' for more information.
>
>
>
> OUTPUT
>
> ubuntu@ubuntu:~/Desktop/mp$ sudo apt-get install python-matplotlib
> Reading package lists... Done
> Building dependency tree
> Reading state information... Done
> Package python-matplotlib is not available, but is referred to by
> another package.
> This may mean that the package is missing, has been obsoleted, or
> is only available from another source
>
> E: Package 'python-matplotlib' has no installation candidate
>
>
Matt, in your first command, you used a backtick, which is different from a
single quote. A phrase quoted by a backtick will execute as a shell command
and put its output in place for the rest of the shell command.
Then, the reason you probably can't find matplotlib is that you probably
don't have the other repos turned on. I forget which repo matplotlib is in,
but it might be the "universe" repo. If you open the synaptic package
manager and view the available repositories (it is in the menu items, I
forget which), you can turn on other Ubuntu repos.
Let us know how that works for you.
Ben Root
From: Matt <mx...@ma...> - 2010年12月03日 14:49:46
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
ubuntu@ubuntu:~/Desktop/mp$ python -c `import matplotlib; print
matplotlib.__version__`
The program 'import' can be found in the following packages:
 * imagemagick
 * graphicsmagick-imagemagick-compat (You will have to enable
component called 'universe')
Try: sudo apt-get install <selected package>
Warning: unknown mime-type for "matplotlib.__version__" -- using
"application/octet-stream"
Error: no such file "matplotlib.__version__"
Argument expected for the -c option
usage: python [option] ... [-c cmd | -m mod | file | -] [arg] ...
Try `python -h' for more information.
OUTPUT
ubuntu@ubuntu:~/Desktop/mp$ sudo apt-get install python-matplotlib
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package python-matplotlib is not available, but is referred to by
another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Package 'python-matplotlib' has no installation candidate
From: Raoul <ra...@bl...> - 2010年12月03日 13:28:41
Attachments: phaseplot.py
Hi all,
I wanted to plot complex valued functions with real support:
 
 f : R -> C
The plot should show the absulote value abs(f)^2 and the phase angle(f).
The demand for such a plot type originates from quantum mechanics
where I want to plot |phi> and/or <phi|phi> in this way showing
the phase of the wave function.
For this task I wrote a little script and it works quite well.
But I have a question regarding the color coding of the phase.
Is there a better way to provide the rgb_colors to the line collection?
Any hints to make the script more efficient would help.
I need to run it on hundreds of frames to produce animations.
BTW: You can add this to your gallery page if you want.
Maybe it's helpful to other people. 
-- Raoul
From: Raoul <ra...@bl...> - 2010年12月03日 13:24:14
Attachments: phaseplot.py
Hi all,
I wanted to plot complex valued functions with real support:
 
 f : R -> C
The plot should show the absulote value abs(f)^2 and the phase angle(f).
The demand for such a plot type originates from quantum mechanics
where I want to plot |phi> and/or <phi|phi> in this way showing
the phase of the wave function.
For this task I wrote a little script and it works quite well.
But I have a question regarding the color coding of the phase.
Is there a better way to provide the rgb_colors to the line collection?
Any hints to make the script more efficient would help.
I need to run it on hundreds of frames to produce animations.
BTW: You can add this to your gallery page if you want.
Maybe it's helpful to other people. 
-- Raoul
From: Raoul <ra...@bl...> - 2010年12月03日 13:22:52
Attachments: phaseplot.py
Hi all,
I wanted to plot complex valued functions with real support:
 
 f : R -> C
The plot should show the absulote value abs(f)^2 and the phase angle(f).
The demand for such a plot type originates from quantum mechanics
where I want to plot |phi> and/or <phi|phi> in this way showing
the phase of the wave function.
For this task I wrote a little script and it works quite well.
But I have a question regarding the color coding of the phase.
Is there a better way to provide the rgb_colors to the line collection?
Any hints to make the script more efficient would help.
I need to run it on hundreds of frames to produce animations.
BTW: You can add this to your gallery page if you want.
Maybe it's helpful to other people. 
-- Raoul
From: Raoul <ra...@bl...> - 2010年12月03日 13:19:31
Attachments: phaseplot.py
Hi all,
I wanted to plot complex valued functions with real support:
 
 f : R -> C
The plot should show the absulote value abs(f)^2 and the phase angle(f).
The demand for such a plot type originates from quantum mechanics
where I want to plot |phi> and/or <phi|phi> in this way showing
the phase of the wave function.
For this task I wrote a little script and it works quite well.
But I have a question regarding the color coding of the phase.
Is there a better way to provide the rgb_colors to the line collection?
Any hints to make the script more efficient would help.
I need to run it on hundreds of frames to produce animations.
BTW: You can add this to your gallery page if you want.
Maybe it's helpful to other people. 
-- Raoul

Showing 11 results of 11

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