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 7 results of 7

From: Alejandro W. <ale...@gm...> - 2011年04月04日 22:46:27
Hi:
I am trying to use this code http://tinyurl.com/44zcpfk (Scipy
cookbook) to make an animation where the background is fix and only a
line is updated. However, after executing the code, I only get a
window with an empty plot. Some debugging shows that the update_line
function is not being called.
I changed the use of numerix by numpy with respect to the original
code. Other than that is the same.
Any advice on how to fix the problem? Or may be this way is obsolete,
but all the animation examples I've found so far don't consider a
fixed background.
Alejandro.
From: Elizabeth Harper-C. <h-...@ci...> - 2011年04月04日 22:20:55
Sorry for another email,
Please all ignore my previous emails, I have figured it out and it was a
stupid error on my part plotting time rather than time[0] etc.
Apologies and best wishes,
Libby
On 4 April 2011 17:50, Elizabeth Harper-Clark <h-...@ci...>wrote:
> Hello,
>
> I've been playing with the script and I now know a little bit more about
> what is wrong. I can get the full graph space to plot by changing:
>
> ax_mass = SubplotHost(fig, 1,1,1, aspect=1.)
> to
> ax_mass = SubplotHost(fig, 1,1,1)
>
> but then a line is never drawn. I have removed the x and y axis limits and
> it plots the axes for the limits of the date but no line for the graph? Here
> is the relevant part of the code:
>
> fig = plt.figure()
> ax_mass = SubplotHost(fig, 1,1,1)
>
> frac_to_mass = gasmass
> print 'frac_to_mass', frac_to_mass
> aux_trans = mtransforms.Affine2D().scale(1., frac_to_mass)
> ax_frac = ax_mass.twin(aux_trans)
> ax_frac.set_viewlim_mode("transform")
>
> fig.add_subplot(ax_mass)
> ax_mass.plot(time,massesMsun, linestyle='-', color='k', linewidth=2.0)
>
> ax_mass.axis["bottom"].set_label("Time (Myrs)" )
> ax_frac.axis["right"].set_label("Fraction of Original Gas Mass in Stars" )
> ax_mass.axis["left"].set_label("Mass in Stars (Msun)" )
> ax_frac.axis["right"].major_ticklabels.set_visible(True)
> ax_frac.axis["top"].major_ticklabels.set_visible(False)
> plt.savefig(frame_template %(folder,name[0],name[int(sys.argv[1])-1]),
> format="eps")
>
>
> can I not use ax_mass.plot?
>
> Thanks,
>
> Libby
>
>
>
>
>
>
> On 4 April 2011 17:00, Elizabeth Harper-Clark <h-...@ci...>wrote:
>
>> Hi guys,
>>
>> I am trying to use the Axes grid toolkit to plot a graph with a second y
>> axes that gives the first y axes in different units (similar to
>> http://matplotlib.sourceforge.net/examples/axes_grid/parasite_simple2.html?highlight=subplothost).
>> I am clearly getting something wrong or missing something as I get both y
>> axes but no graph inbetween. Plot and script attached. Please can anyone see
>> what I have got wrong or point me in the direction of more extensive
>> documentation about parasite axes or SubplotHost?
>>
>> Many thanks,
>>
>> Libby
>>
>>
>> --
>> Elizabeth Harper-Clark MA MSci
>> PhD Candidate, Astrophysics, UofT
>>
>>
>> www.astro.utoronto.ca/~h-clark <http://www.astro.utoronto.ca/%7Eh-clark>
>> h-...@ci...
>> AIM: edphc1
>> MSN: ed...@ho...
>> Skype: eharperclark
>> Office phone: 416-978-5759
>>
>
>
>
> --
> Elizabeth Harper-Clark MA MSci
> PhD Candidate, Astrophysics, UofT
>
> www.astro.utoronto.ca/~h-clark <http://www.astro.utoronto.ca/%7Eh-clark>
> h-...@ci...
> AIM: edphc1
> MSN: ed...@ho...
> Skype: eharperclark
> Office phone: 416-978-5759
>
-- 
Elizabeth Harper-Clark MA MSci
PhD Candidate, Astrophysics, UofT
www.astro.utoronto.ca/~h-clark <http://www.astro.utoronto.ca/%7Eh-clark>
h-...@ci...
AIM: edphc1
MSN: ed...@ho...
Skype: eharperclark
Office phone: 416-978-5759
From: Elizabeth Harper-C. <h-...@ci...> - 2011年04月04日 21:50:11
Hello,
I've been playing with the script and I now know a little bit more about
what is wrong. I can get the full graph space to plot by changing:
ax_mass = SubplotHost(fig, 1,1,1, aspect=1.)
to
ax_mass = SubplotHost(fig, 1,1,1)
but then a line is never drawn. I have removed the x and y axis limits and
it plots the axes for the limits of the date but no line for the graph? Here
is the relevant part of the code:
fig = plt.figure()
ax_mass = SubplotHost(fig, 1,1,1)
frac_to_mass = gasmass
print 'frac_to_mass', frac_to_mass
aux_trans = mtransforms.Affine2D().scale(1., frac_to_mass)
ax_frac = ax_mass.twin(aux_trans)
ax_frac.set_viewlim_mode("transform")
fig.add_subplot(ax_mass)
ax_mass.plot(time,massesMsun, linestyle='-', color='k', linewidth=2.0)
ax_mass.axis["bottom"].set_label("Time (Myrs)" )
ax_frac.axis["right"].set_label("Fraction of Original Gas Mass in Stars" )
ax_mass.axis["left"].set_label("Mass in Stars (Msun)" )
ax_frac.axis["right"].major_ticklabels.set_visible(True)
ax_frac.axis["top"].major_ticklabels.set_visible(False)
plt.savefig(frame_template %(folder,name[0],name[int(sys.argv[1])-1]),
format="eps")
can I not use ax_mass.plot?
Thanks,
Libby
On 4 April 2011 17:00, Elizabeth Harper-Clark <h-...@ci...>wrote:
> Hi guys,
>
> I am trying to use the Axes grid toolkit to plot a graph with a second y
> axes that gives the first y axes in different units (similar to
> http://matplotlib.sourceforge.net/examples/axes_grid/parasite_simple2.html?highlight=subplothost).
> I am clearly getting something wrong or missing something as I get both y
> axes but no graph inbetween. Plot and script attached. Please can anyone see
> what I have got wrong or point me in the direction of more extensive
> documentation about parasite axes or SubplotHost?
>
> Many thanks,
>
> Libby
>
>
> --
> Elizabeth Harper-Clark MA MSci
> PhD Candidate, Astrophysics, UofT
>
>
> www.astro.utoronto.ca/~h-clark <http://www.astro.utoronto.ca/%7Eh-clark>
> h-...@ci...
> AIM: edphc1
> MSN: ed...@ho...
> Skype: eharperclark
> Office phone: 416-978-5759
>
-- 
Elizabeth Harper-Clark MA MSci
PhD Candidate, Astrophysics, UofT
www.astro.utoronto.ca/~h-clark <http://www.astro.utoronto.ca/%7Eh-clark>
h-...@ci...
AIM: edphc1
MSN: ed...@ho...
Skype: eharperclark
Office phone: 416-978-5759
From: Robbie E. <rob...@gm...> - 2011年04月04日 20:33:47
Hi,
Fixed it by deleting fontList.cache in my tmp directory that was being used
by the web server.
Maybe this helps someone else.
On Mon, Apr 4, 2011 at 3:29 PM, Michael Droettboom <md...@st...> wrote:
> When run as the web server, it's probably running as a different user. Is
> Arial installed in ~/.fonts? If so the webserver user won't find it.
>
>
> On 04/04/2011 03:17 PM, Robbie Edwards wrote:
>
> Hi all,
>
> I'm trying to use matplotlib to generate some graphs on a webpage for me.
> Everything works pretty well, except, I cannot make a change to the fonts.
> I've set up the scripts to be called as a cgi script or to be run from the
> command line. When I run them from the command line, I get the correct font
> (Arial) yet when run from the web page, it uses the CMR10 font. Arial is
> installed on the linux system.
>
> I've thought the problem might be related to which matplotlibrc file each
> script might be using, but when I check matplotlib.matplotlib_fname() from
> the command line and web page, they return the same.
>
> Maybe there is a way to get the --verbose-debug output when run from a
> web page? That could help me figure out what's going on.
>
> You can set "verbose.level" to "debug-annoying" in your matplotlibrc. If
> the webserver is collecting standard output, the debug messages should end
> up in the web server logs.
>
>
> I know I could manually specify the font using font_manager, but that's
> not really ideal as I'd have to do it manually for each graph. I'd rather
> have a global solution for all my graphs. Any help is greatly appreciated.
>
> Cheers,
> Mike
>
>
>
> robbie
>
>
>
> ------------------------------------------------------------------------------
> 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 lis...@li...https://lists.sourceforge.net/lists/listinfo/matplotlib-users
>
>
>
> --
> Michael Droettboom
> Science Software Branch
> Space Telescope Science Institute
> Baltimore, Maryland, USA
>
>
>
> ------------------------------------------------------------------------------
> Xperia(TM) PLAY
> It's a major breakthrough. An authentic gaming
> smartphone on the nation's most reliable network.
> And it wants your games.
> http://p.sf.net/sfu/verizon-sfdev
> _______________________________________________
> Matplotlib-users mailing list
> Mat...@li...
> https://lists.sourceforge.net/lists/listinfo/matplotlib-users
>
>
From: Michael D. <md...@st...> - 2011年04月04日 20:29:52
When run as the web server, it's probably running as a different user. 
Is Arial installed in ~/.fonts? If so the webserver user won't find it.
On 04/04/2011 03:17 PM, Robbie Edwards wrote:
> Hi all,
>
> I'm trying to use matplotlib to generate some graphs on a webpage for 
> me. Everything works pretty well, except, I cannot make a change to 
> the fonts. I've set up the scripts to be called as a cgi script or to 
> be run from the command line. When I run them from the command line, 
> I get the correct font (Arial) yet when run from the web page, it uses 
> the CMR10 font. Arial is installed on the linux system.
>
> I've thought the problem might be related to which matplotlibrc file 
> each script might be using, but when I 
> check matplotlib.matplotlib_fname() from the command line and web 
> page, they return the same.
>
> Maybe there is a way to get the --verbose-debug output when run from a 
> web page? That could help me figure out what's going on.
You can set "verbose.level" to "debug-annoying" in your matplotlibrc. 
If the webserver is collecting standard output, the debug messages 
should end up in the web server logs.
>
> I know I could manually specify the font using font_manager, but 
> that's not really ideal as I'd have to do it manually for each graph. 
> I'd rather have a global solution for all my graphs. Any help is 
> greatly appreciated.
Cheers,
Mike
>
>
> robbie
>
>
>
> ------------------------------------------------------------------------------
> 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
> 
-- 
Michael Droettboom
Science Software Branch
Space Telescope Science Institute
Baltimore, Maryland, USA
From: Robbie E. <rob...@gm...> - 2011年04月04日 19:17:28
Hi all,
I'm trying to use matplotlib to generate some graphs on a webpage for me.
 Everything works pretty well, except, I cannot make a change to the fonts.
 I've set up the scripts to be called as a cgi script or to be run from the
command line. When I run them from the command line, I get the correct font
(Arial) yet when run from the web page, it uses the CMR10 font. Arial is
installed on the linux system.
I've thought the problem might be related to which matplotlibrc file each
script might be using, but when I check matplotlib.matplotlib_fname() from
the command line and web page, they return the same.
Maybe there is a way to get the --verbose-debug output when run from a web
page? That could help me figure out what's going on.
I know I could manually specify the font using font_manager, but that's not
really ideal as I'd have to do it manually for each graph. I'd rather have
a global solution for all my graphs. Any help is greatly appreciated.
robbie
From: Michael D. <md...@st...> - 2011年04月04日 13:43:47
I don't see a good reason why this was not done. (Maybe someone else 
has the historical context, if any).
Would you mind adding an issue to the tracker for this?
Mike
On 04/02/2011 06:25 AM, Thomas Robitaille wrote:
> 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
> ------------------------------------------------------------------------------
> 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
> 
-- 
Michael Droettboom
Science Software Branch
Space Telescope Science Institute
Baltimore, Maryland, USA
2 messages has been excluded from this view by a project administrator.

Showing 7 results of 7

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