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





Showing 6 results of 6

From: John H. <joh...@gm...> - 2007年12月13日 22:59:59
Is there a way to have two colors of text on an axis label? I am 
trying to plot sales dollars and margin dollars on the same graph in 
different colors. That works well enough but I'm having a hard time 
labeling the yaxis
plot_date(dates,units,visible = False)
bar(dates,sales,width=5.0,color = salesColor)
bar(dates,margin,width=5.0,color = marginColor)
ylabel("Sales $\nMargin $",color=salesColor)
gets me "Sales $" in the proper color but I can't figure out if it is 
possible to have "Margin $" in its color as well.
Thanks!
John
From: Michael H. <mh...@us...> - 2007年12月13日 22:52:43
Does a LineCollection generated by contour() have a property that 
holds the labels? I would like to label my contour lines with roman 
numerals, and cannot figure out how to get clabel to do that.
Thanks,
Mike
------------------------------------------------------
Michael Hearne
mh...@us...
(303) 273-8620
USGS National Earthquake Information Center
1711 Illinois St. Golden CO 80401
Senior Software Engineer
Synergetics, Inc.
------------------------------------------------------
From: Orest K. <ore...@gm...> - 2007年12月13日 21:01:30
Attachments: fonts_demo_output.png
I've been trying to set the font properties of the plots that I've
been making with matplotlib; however, there appears to be a problem
with font rendering. For example, when I check the properties of text
on the axes, etc, the font class is set to serif; however, the font in
the plot does not appear to be serif. I ran several of the font demos
in the matplotlib examples directory, and the fonts all looked the
same (except for size). Attached is the PNG of the fonts_demo.py
output.
The only way I was able to get serif fonts was if I call:
rc('text', usetex=True), and even then this only changes the fonts on
the axis tick labels. xlabel, ylabel still remain sans-serif.
I'm sure I am missing something obvious, but have read through all the
documentation available on the matplotlib website regarding fonts, and
they don't seem to indicate that I need to install anything else.
This is Python 2.5 on Windows XP.
Thanks,
Orest
From: Michael D. <md...@st...> - 2007年12月13日 20:17:07
I came across this today and thought there might be interest in this on 
the matplotlib list.
"reinteract" is an edit-in-place shell, that includes rudimentary 
matplotlib support.
http://fishsoup.net/software/reinteract/
It's still in its early stages, but the approach seems very promising. 
Be sure to watch the screencast past the half way mark where the author 
demonstrates the matplotlib integration.
Cheers,
Mike
-- 
Michael Droettboom
Science Software Branch
Operations and Engineering Division
Space Telescope Science Institute
Operated by AURA for NASA
From: Fernando P. <fpe...@gm...> - 2007年12月13日 01:59:31
On Dec 12, 2007 7:16 AM, Paul Kienzle <pki...@ni...> wrote:
> I'm curious about the term 'threading backend'.
>
> Recently I posted a question about how to handle slow plots, suggesting
> that the backend canvas have an isabort() method so that the renderer
> can stop what it is doing and post the current bitmap as it stands.
> This is to support interactive operations such as panning and resizing
> on large data collections.
>
> Do you mean something similar when you say 'threading backend', and is
> it already supported in IPython?
No, it just means that ipython can run in conjunction with the major
GUI toolkits in a non-blocking manner. In a plain python shell, if
you open a plot window (for any backend other than Tk), you can't go
back to the prompt and keep typing until you close the plot. IPython
allows that to happen, with Wx, GTK, Qt and Qt4.
Cheers,
f
From: Jeff W. <js...@fa...> - 2007年12月13日 00:01:25
Michael Hearne wrote:
> All: I have an issue I'm hoping someone here can help with. I've 
> created a encapsulated postscript figure from pylab (basemap, 
> actually, but it shouldn't make a difference), and I'd like to have 
> the entire saved image be the extent of the axes, with no border 
> whatsoever. Is there a way to set the extent of either the axes or 
> the figure so that this is so?
>
> And before someone points this out to me - yes, I realize that there 
> are other tools (ImageMagick, for example) I could use to trim the 
> whitespace around the edge of the image, but this is part of an 
> automated system and I'd prefer not to have to bomb out to a shell for 
> something like that.
>
> Thanks,
>
> Mike
>
>
Mike: Create an axes instance (before drawing anything with your basemap instance) like this:
fig = pylab.figure(figsize=(X,Y))
ax = fig.add_axes([0,0,1,1])
X and Y need to be set to the desired width and height of your figure in inches. To avoid having any border, Y/X must be exactly equal to the aspect ratio of the map projection region (which you can get from the 'aspect' Basemap instance variable).
-Jeff
-- 
Jeffrey S. Whitaker Phone : (303)497-6313
Meteorologist FAX : (303)497-6449
NOAA/OAR/PSD R/PSD1 Email : Jef...@no...
325 Broadway Office : Skaggs Research Cntr 1D-124
Boulder, CO, USA 80303-3328 Web : http://tinyurl.com/5telg

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