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




Showing 6 results of 6

From: Charlie M. <cw...@gm...> - 2006年01月12日 18:33:27
It may of not hit the sf mirror that was randomly picked. Sometimes
the files take about a day to make the rounds. Try running it a few
times, and I bet you will hit one that has it.
On 1/12/06, Charles R. Twardy <ct...@gm...> wrote:
> > "easy_install -U matplotlib" from linux or windows and it will
> Downloading....
> error: Unexpected HTML page found at
> http://prdownloads.soruceforge.net/matplotlib/matplotlib-0.86-1.tar.gz?do=
wnload
>
> Debian Linux/ppc.
>
> --
> Charles R. Twardy
>
From: John H. <jdh...@ac...> - 2006年01月12日 18:31:54
>>>>> "Charles" == Charles R Twardy <ct...@gm...> writes:
 >> trans = blend_xy_sep_transform(ax.transAxes, ax.transAxes)
 >> 
 >> This is basically a no-op; if the axes transform is the one you
 >> want, just use it
 >> 
 >> ax.text(0.5, 1, "My Title", ha='center',
 >> va='top',transform=ax.transAxes)
 Charles> Can't do that. Puts the text too high, runs into the top
 Charles> bar and the tickmarks. Can't apply the offset to
Oh right (slaps self on head). You need to set the offset on the
transform and you can't apply that to ax.transAxes since it will screw
up the axes transform... So you need to copy it, or duplicate it.
blend is one way to copy the transform, but there is a better way --
just mimic what axes.py does when it creates it.
 from matplotlib.transforms import unit_bbox, get_bbox_transform
 trans = get_bbox_transform(unit_bbox(), ax.bbox)
this transforms the (0,0), (1,1) bounding box to the axes bounding
box. You can then set the offset of this transform as before...
JDH
From: Charles R. T. <ct...@gm...> - 2006年01月12日 18:17:28
> trans =3D blend_xy_sep_transform(ax.transAxes, ax.transAxes)
>
> This is basically a no-op; if the axes transform is the one you want,
> just use it
>
> ax.text(0.5, 1, "My Title", ha=3D'center', va=3D'top',transform=3Dax.tr=
ansAxes)
Can't do that. Puts the text too high, runs into the top bar and the tickm=
arks.
Can't apply the offset to ax.transAxes either -- it changes
*EVERYTHING*. The old "assignment is reference" problem. But if
blend is nearly a no-op, then I'll use it.
I don't need a data component to put the text below the tickmarks. But
I *did* need the magic offset numbers rcParams['xtick.major.size'] and
gcf().dpi/Value(72.), plus your knowledge of scale_transform and
set_offset. And it seems blend_ gives me a copy operator for
transAxes.
Thanks! Thanks! Thanks!
-C
--
Charles R. Twardy
From: Charlie M. <cw...@gm...> - 2006年01月12日 15:11:15
In addition to the standard downloads I put eggs up for windows/linux
py2.3/2.4 combinations. The pypi download link for matplotlib has
been set to the sourceforge download page. Now you can run
"easy_install -U matplotlib" from linux or windows and it will
automatically look at pypi, redirect to mpl sf download page, find the
right binary depending on your platform, and install matplotlib. This
makes updates/installations pretty trivial.
I will post osx eggs after some more testing.
- Charlie
On 1/12/06, Charlie Moad <cw...@gm...> wrote:
> This minor release fixes the windows installer issues. A few updates
> snuck in as well.
>
> =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
> 2006年1月11日 Fixed setup.py for win32 build and added rc template to the
> MANIFEST.in
>
> 2006年1月10日 Added xpdf distiller option. matplotlibrc ps.usedistiller can n=
ow be
> none, false, ghostscript, or xpdf. Validation checks for
> dependencies. This needs testing, but the xpdf option should =
produce
> the highest-quality output and small file sizes - DSD
>
> 2006年01月10日 For the usetex option, backend_ps now does all the LaTeX work =
in the
> os's temp directory - DSD
>
> 2006年1月10日 Added checks for usetex dependencies. - DSD
>
> =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
>
From: Charlie M. <cw...@gm...> - 2006年01月12日 13:43:39
On 1/12/06, Steve Schmerler <el...@gm...> wrote:
> Hi
>
> I discoverd some problems while playing with my fresh installed 0.86
> (much faster then 0.82 ... great work!):
>
> rcParams['text.usetex']=3DFalse;plot([1,2,3]); xlabel("x-axis");
> ylabel("y-label"); savefig("image.eps")
>
> produces the expected result (nice bounding box etc.) but using
> usetex=3DTrue
>
> rcParams['text.usetex']=3DTrue; plot([1,2,3]); xlabel("x-axis");
> ylabel("y-label"); savefig("image.eps")
>
> results in an .eps where the axes tick numbering and the labels are
> missing (bad bounding box when viewing it with gv). Saving it as .ps
>
> rcParams['text.usetex']=3DTrue; plot([1,2,3]); xlabel("x-axis");
> ylabel("y-label"); savefig("image.ps")
>
> produces a .ps file whose BB is much bigger then it should be (looks
> like A4).
>
The 0.86.1 release had some usetex related issues updated. Please try
it and let us know if the issue is still there.
From: Charlie M. <cw...@gm...> - 2006年01月12日 12:49:19
This minor release fixes the windows installer issues. A few updates
snuck in as well.
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
2006年1月11日 Fixed setup.py for win32 build and added rc template to the
MANIFEST.in
2006年1月10日 Added xpdf distiller option. matplotlibrc ps.usedistiller can now=
 be
 none, false, ghostscript, or xpdf. Validation checks for
 dependencies. This needs testing, but the xpdf option should pr=
oduce
 the highest-quality output and small file sizes - DSD
2006年01月10日 For the usetex option, backend_ps now does all the LaTeX work in=
 the
 os's temp directory - DSD
2006年1月10日 Added checks for usetex dependencies. - DSD
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D

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