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
(1) |
3
(1) |
4
(6) |
5
(12) |
6
(13) |
7
|
|
8
(2) |
9
(21) |
10
(19) |
11
(2) |
12
(9) |
13
(22) |
14
(1) |
|
15
(1) |
16
(12) |
17
(5) |
18
(6) |
19
(7) |
20
(13) |
21
(6) |
|
22
(3) |
23
(14) |
24
(15) |
25
(7) |
26
(16) |
27
(7) |
28
(6) |
|
29
(1) |
30
(12) |
31
(3) |
|
|
|
|
|
From:
<fra...@un...> - 2006-10-09 08:33:01
|
Le Vendredi 6 Octobre 2006 19:59, John Hunter a =E9crit=A0:=0A=
> for line in ax.get_xticklines():=0A=
> =A0 =A0 line.set_linewidth(2.0)=0A=
=0A=
Thanks !=0A=
I have try this as in examples/axes_props.py but it doesn't work for me=0A=
=0A=
from pylab import *=0A=
=0A=
t =3D arange(0.0, 2.0, 0.01)=0A=
s =3D sin(2*pi*t)=0A=
ax =3D subplot(111)=0A=
ax.plot(t, s)=0A=
ax.grid(True)=0A=
=0A=
ticklines =3D ax.get_xticklines()=0A=
ticklines.extend( ax.get_yticklines() )=0A=
=0A=
for line in ticklines:=0A=
line.set_linewidth(4)=0A=
=0A=
show()=0A=
=0A=
any ideas ? I use matplotlib-0.87.5 and Python 2.4.3=0A=
Is there a way to do this in matplotlibrc like for tick length ?=0A=
=0A=
=0A=
--=20=0A=
Fran=E7ois BEAUBERT=0A=
ENSIAME/LME=0A=
Bureau A9=0A=
Universit=E9 de Valenciennes - Le Mont Houy - 59313 Valenciennes Cedex 9=0A=
T=E9l=E9phone: (0/33)3 27 51 19 72=0A=
T=E9l=E9copie: (0/33)3 27 51 19 61=0A=
Mel: fra...@un...=0A=
=0A=
=0A=
--=20=0A=
This message has been scanned for viruses and=0A=
dangerous content by MailScanner, and is=0A=
believed to be clean.=0A=
=0A=
|
|
From: Christian M. <mee...@un...> - 2006-10-09 07:25:00
|
On Monday 02 October 2006 21:51, Mark Bakker wrote: > What I don't understand is why we need previews at all? > Is this because Microsoft software cannot display an eps file? > Why not? Isn't that one of the easiest drivers to write? > Are they not adding eps format out of spite? > Mark Sorry for replying so late - I was to a meeting for a few days. As to your question: I have no idea WHY previews are needed. I only know they are required by some publishers if you submit a paper to them (which was my original reason for asking). HTH Christian |
|
From: William H. <wil...@gm...> - 2006-10-09 06:50:16
|
I posted this on scipy-user ML, then tried here and it bounced (?), so now I'm trying again. Sigh... OK, so I can't import pylab, but everything else (import numpy, scipy, matplotlib and gtk) works fine. These are installed: scipy.__version__ returns '0.5.1' numpy.__version__ returns '1.0rc1' matplotlib.__version__ returns '0.87.6' My options in setup.py for matplotlib was set to build Agg and GTKAgg ( = 1) only, the others all = 0. If I leave them at 'auto' as per default, matplotlib doesn't build (?). I use Ubuntu Dapper - AMD64. Over the weekend I managed to find the cause of the problem: Me. I set Agg = 1, GTKAgg = 1 and GTK = 1 (the rest = 0) in setup.py and now the pylab interface is happy. Previously GTK = 0 and it seems pylab was looking for a shared library that's built if GTK = 1. -- wh |
|
From: Faheem M. <fa...@em...> - 2006-10-09 05:18:21
|
Hi,
The following generates a plot, but the x axis label is missing. Am I
doing something wrong? In any case, can anyone suggest a solution or
workaround?
This has been tested with the version of matplotlib in Debian etch
(0.87.5).
Thanks in advance.
Faheem.
********************************************************************
from pylab import *
from matplotlib import rc
from matplotlib.backends.backend_ps import FigureCanvasPS
def plot_ctimevec():
x = [10, 20, 30, 40, 50, 60, 70, 80, 90, 100]
y = [45.659999999999997, 60.058999999999997, 67.575000000000003, 78.372,
84.227000000000004, 88.162000000000006, 85.391999999999996,
94.572000000000003, 91.572000000000003, 103.40000000000001]
fig = Figure()
fig.set_figwidth(6.0)
fig.set_figheight(3.0)
canvas = FigureCanvasPS(fig)
ax = fig.add_subplot("111")
ax.plot(x, y)
ax.set_xlabel('dim')
ax.set_ylabel(r'average of $F+L-1$')
print x
print y
canvas.print_figure("toy_ctimes.eps")
|
|
From: Paul B. <peb...@gm...> - 2006-10-09 00:15:13
|
Kelvin, If you are using the command line interface, try using 'xlim(a, b)' to set the limits. -- Paul On 10/6/06, Kelvin Chu <kel...@uv...> wrote: > Hi, > > Is it possible in python/matplotlib to only define the x-axis range > and have the y-axis autoscale? > > I've read the docs about axis() but this seems to set the bounds on > both the x- and y-axes. > > Thanks. > > Kelvin Chu > > > -- > Kelvin Chu, Physics Department, Cook Building > 82 University Place, University of Vermont, Burlington, VT 05405-0125 > http://www.uvm.edu/~kchu/; (802) 656-0064; Fax: (802) 656-0817 > > > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share your > opinions on IT & business topics through brief surveys -- and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > _______________________________________________ > Matplotlib-users mailing list > Mat...@li... > https://lists.sourceforge.net/lists/listinfo/matplotlib-users > |
|
From: Eric F. <ef...@ha...> - 2006-10-08 19:50:13
|
Stefan, Thanks for the bug report--it is surprising that no one noticed this earlier. It looks like Norbert's changes completely wiped out the setting of markerfacecolor and markeredgecolor. I have reverted axes.py in svn to the 2788 revision (via revision 2799) so that it will work until Norbert gets a chance to add marker handling back into his patch and reapply it. Eric Stefan van der Walt wrote: > Hi all > > The marker behaviour changed in > > ------------------------------------------------------------------------ > r2790 | nnemec | 2006-09-29 11:46:57 +0200 (Fri, 29 Sep 2006) | 1 line > > reworked linestyle and markercolor handling > > > For example, try the following: > > N.plot(N.random.random(1000),'r.') > > Note that all the dots are blue! |
|
From: Stefan v. d. W. <st...@su...> - 2006-10-08 11:11:53
|
Hi all The marker behaviour changed in ------------------------------------------------------------------------ r2790 | nnemec | 2006-09-29 11:46:57 +0200 (Fri, 29 Sep 2006) | 1 line reworked linestyle and markercolor handling For example, try the following: N.plot(N.random.random(1000),'r.') Note that all the dots are blue! Regards St=E9fan |
|
From: John H. <jdh...@ac...> - 2006-10-06 18:00:06
|
>>>>> "Helge" == Helge Avlesen <he...@gm...> writes:
Helge> hi, which option is that? I know the length can be set
Helge> there, but the width? trying e.g. xtick.linewidth : 1.0
Helge> does not seem to work.
These aren't covered by default params (well they use the same width
as lines.linewidth
You can customize them with
for line in ax.get_xticklines():
line.set_linewidth(2.0)
JDH
|
|
From: Helge A. <he...@gm...> - 2006-10-06 17:56:28
|
> 2006/10/5, Fran=E7ois Beaubert < > fra...@un...>: > > Hi all, > > I have look in the doc and examples but was unable to find a way to con= trol > > the thickness of the major and minor tick on the axis. On 10/5/06, David Huard <dav...@gm...> wrote: > Fran=E7ois, > These options can be found in the matplotlibrc configuration figure, or c= an > be set at runtime using the rc command. > David hi, which option is that? I know the length can be set there, but the width? trying e.g. xtick.linewidth : 1.0 does not seem to work. Helge |
|
From: John H. <jdh...@ac...> - 2006-10-06 17:37:59
|
>>>>> "stephen" == stephen <st...@th...> writes:
stephen> I have a 2x2 matrix of subplots. Can I have a title that
stephen> spans the top? Thanks.
http://matplotlib.sf.net/examples/figtext.py
JDH
|
|
From: <st...@th...> - 2006-10-06 17:03:09
|
I have a 2x2 matrix of subplots. Can I have a title that spans the top? Thanks. Stephen |
|
From: Vinj V. <vin...@ya...> - 2006-10-06 16:49:29
|
Hi, I've been working hard on www.eswap.com. It's matplotlib powered. I would like to thank the matplotlib community and especially John H. for making this possible. Some of the features are: 1. See 20 (professional looking) charts per page 2. You can tag stocks with keywords 3. You can create your own sets and portfolios 4. keyboard navigation. You can use the right arrow key and left arrow key Scanning, Modelling and Back Testing are planned for release early next year. Can you give it a spin and let me know how you like it? Thanks, Vineet __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com |
|
From: Kelvin C. <kel...@uv...> - 2006-10-06 15:26:28
|
Hi, Is it possible in python/matplotlib to only define the x-axis range and have the y-axis autoscale? I've read the docs about axis() but this seems to set the bounds on both the x- and y-axes. Thanks. Kelvin Chu -- Kelvin Chu, Physics Department, Cook Building 82 University Place, University of Vermont, Burlington, VT 05405-0125 http://www.uvm.edu/~kchu/; (802) 656-0064; Fax: (802) 656-0817 |
|
From: Samuel G. <sg...@ol...> - 2006-10-06 15:26:03
|
By the way, does anyone look into the possibility of changing the feature after drawing ? I already ask this question a few time ago but it still in suspend. thank you sam John Hunter wrote: >>>>>> "Miriam" =3D=3D Miriam Gerrits <mi...@ho...> writes: >>>>>> =20 > > Miriam> Hi, > > Miriam> Is it possible in python/matplotlib to link the x-axis > Miriam> in the subplots. So if you zoom in in one of the graphs of > Miriam> the subplot, that then the other subplots also zoom in. In > Miriam> Matlab this function is called 'linkaxis'. > > > ax1 =3D subplot(211) > ax1.plot(rand(20)) > > ax2 =3D subplot(212, sharex=3Dax1) > ax2.plot(rand(20)) > > JDH > > -----------------------------------------------------------------------= -- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share= your > opinions on IT & business topics through brief surveys -- and earn cash > http://www.techsay.com/default.php?page=3Djoin.php&p=3Dsourceforge&CID=3D= DEVDEV > _______________________________________________ > Matplotlib-users mailing list > Mat...@li... > https://lists.sourceforge.net/lists/listinfo/matplotlib-users > =20 --=20 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Samuel Garcia Universite Claude Bernard LYON 1 CNRS - UMR5020, Laboratoire des Neurosciences et Systemes Sensoriels 50, avenue Tony Garnier 69366 LYON Cedex 07 FRANCE T=E9l : 04 37 28 74 64 Fax : 04 37 28 76 01 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
|
From: John H. <jdh...@ac...> - 2006-10-06 15:20:23
|
>>>>> "Miriam" == Miriam Gerrits <mi...@ho...> writes:
Miriam> Hi,
Miriam> Is it possible in python/matplotlib to link the x-axis
Miriam> in the subplots. So if you zoom in in one of the graphs of
Miriam> the subplot, that then the other subplots also zoom in. In
Miriam> Matlab this function is called 'linkaxis'.
ax1 = subplot(211)
ax1.plot(rand(20))
ax2 = subplot(212, sharex=ax1)
ax2.plot(rand(20))
JDH
|
|
From: Samuel G. <sg...@ol...> - 2006-10-06 14:43:51
|
Hi list, I have just writen a new widget : a DragingCursor. If anyone want and to try and use it ... It is inspired from Cursor in widget module. Samuel --=20 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Samuel Garcia Universite Claude Bernard LYON 1 CNRS - UMR5020, Laboratoire des Neurosciences et Systemes Sensoriels 50, avenue Tony Garnier 69366 LYON Cedex 07 FRANCE T=E9l : 04 37 28 74 64 Fax : 04 37 28 76 01 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
|
From: John H. <jdh...@ac...> - 2006-10-06 14:23:30
|
>>>>> "Mark" == Mark Bakker <ma...@gm...> writes:
Mark> So is it just capital F, or Control F or so? I'll look into
Mark> Tk, But no promises, Mark
Oops, my bad. It's just 'f', no SHIFT, no CTRL.
JDH
|
|
From: Mark B. <ma...@gm...> - 2006-10-06 14:18:00
|
So is it just capital F, or Control F or so? I'll look into Tk, But no promises, Mark On 10/6/06, John Hunter <jdh...@ac...> wrote: > > >>>>> "Mark" == Mark Bakker <ma...@gm...> writes: > > Mark> Hello - In interactive mode it is sometimes useful to make a > Mark> figure that is a full screen size. Is there such an option > Mark> ? > > We have it in gtk (thank to Steve Chaplin) with 'F'. And it would > need to be added to each backend. Add it to your favorite backend and > send a patch! > > JDH > |
|
From: John H. <jdh...@ac...> - 2006-10-06 13:58:39
|
>>>>> "zhangh1" == zhangh1 <zh...@um...> writes:
zhangh1> Hi, all: I added a table to my figure using 'table'
zhangh1> function. But since this table is very long, the user can
zhangh1> only see part of it. Is there any easy way to add a
zhangh1> scroll bar to the chart so that the user can scroll it
zhangh1> down and see it? Thanks
You would have to use the embedding_in_yourgui.py examples to write
your own GUI, ex examples/embedding_in_gtk.py
JDH
|
|
From: John H. <jdh...@ac...> - 2006-10-06 13:58:04
|
>>>>> "Mark" == Mark Bakker <ma...@gm...> writes:
Mark> Hello - In interactive mode it is sometimes useful to make a
Mark> figure that is a full screen size. Is there such an option
Mark> ?
We have it in gtk (thank to Steve Chaplin) with 'F'. And it would
need to be added to each backend. Add it to your favorite backend and
send a patch!
JDH
|
|
From: Eric F. <ef...@ha...> - 2006-10-05 23:21:48
|
George Nurser wrote: > I have been trying to > i. plot a figure using pcolormesh > ii. set the proportions of the figure using ax.set_aspect > iii. draw colorbar > > Problem is, colorbar height uses whole of axes box, not just height of > figure (whose proportions were set by call of > ax.set_aspect(aspect=2.,adjustable='box')). > > I can't set the colorbar height manually either, as I don't know how > to get out the bounding box of the figure -- ax.get_position() just > gives the full axes box, which is unaffected by ax.set_aspect. > > Is there any way of recovering the actual bounding box of the figure? > The docstring for the method ax.set_position says: > > There are two position variables: one which is ultimately > used, but which may be modified by apply_aspect, and a second > which is the starting point for apply_aspect. > > which = 'active' to change the first; > 'original' to change the second; > 'both' to change both > > which sounds relevant, but these variables don't seem to apply to > ax.get_position() George, The problem with your attempt to use get_position() is that the aspect ratio does not affect the position until the apply_aspect method of the axes is called, which is normally when drawing occurs. You can either call it yourself, or you can insert a draw command. Here is an example of the first: In [6]:pcolor(z) Out[6]:<matplotlib.collections.PolyCollection instance at 0xb3db690c> In [7]:gca().get_position() Out[7]:[0.125, 0.099999999999999978, 0.77500000000000002, 0.80000000000000004] In [8]:gca().set_aspect(3) In [9]:gca().get_position() Out[9]:[0.125, 0.099999999999999978, 0.77500000000000002, 0.80000000000000004] In [10]:clf() In [11]:pcolor(z) Out[11]:<matplotlib.collections.PolyCollection instance at 0xb3dc6a6c> In [12]:gca().get_position() Out[12]:[0.125, 0.099999999999999978, 0.77500000000000002, 0.80000000000000004] In [13]:gca().set_aspect(3) In [14]:gca().apply_aspect() In [15]:gca().get_position() Out[15]: [0.31343312597200623, 0.099999999999999978, 0.39813374805598761, 0.80000000000000004] Eric |
|
From: Charlie M. <cw...@gm...> - 2006-10-05 22:54:46
|
On 10/5/06, Hanno Klemm <kl...@ph...> wrote: > > Hi, I think I might have discovered a bug: > > On python 2.5 with the gtk backend and matplotlib 0.87.6 the following > happens: > > >>> plot([1,2,3],'ko') > [<matplotlib.lines.Line2D instance at 0x2a9ed68638>] > >>> show() > Traceback (most recent call last): > File > "/glb/apps/python2.5/lib/python2.5/site-packages/matplotlib/backends/backend_gtk.py", > line 284, in expose_event > self._render_figure(self._pixmap, w, h) > File > "/glb/apps/python2.5/lib/python2.5/site-packages/matplotlib/backends/backend_gtk.py", > line 272, in _render_figure > self.figure.draw (self._renderer) > File > "/glb/apps/python2.5/lib/python2.5/site-packages/matplotlib/figure.py", > line 545, in draw > for a in self.axes: a.draw(renderer) > File > "/glb/apps/python2.5/lib/python2.5/site-packages/matplotlib/axes.py", > line 1067, in draw > a.draw(renderer) > File > "/glb/apps/python2.5/lib/python2.5/site-packages/matplotlib/lines.py", > line 379, in draw > markerFunc(renderer, gc, xt, yt) > File > "/glb/apps/python2.5/lib/python2.5/site-packages/matplotlib/lines.py", > line 618, in _draw_circle > x, y, w, w, 0.0, 360.0, 0.0) > File > "/glb/apps/python2.5/lib/python2.5/site-packages/matplotlib/backends/backend_gdk.py", > line 97, in draw_arc > self.gdkDrawable.draw_arc(gc.gdkGC, True, x, y, w, h, a1, a2, > rotation) > TypeError: GdkDrawable.draw_arc() takes exactly 8 arguments (9 given) > > Any hints what is happening there? This bug was my fault. I added an extra argument for rotated ellipsis. I fixed it in svn. Just remove the rotation arg from the line of interest for a fix. - Charlie |
|
From: <zh...@um...> - 2006-10-05 21:49:36
|
Hi, all: I added a table to my figure using 'table' function. But since this table is very long, the user can only see part of it. Is there any easy way to add a scroll bar to the chart so that the user can scroll it down and see it? Thanks |
|
From: Stefan v. d. W. <st...@su...> - 2006-10-05 20:03:19
|
On Thu, Oct 05, 2006 at 03:50:42PM -0400, zh...@um... wrote: > Is there any easy fucntion to do that? Thanks You mean like x.transpose() or x.T? |
|
From: <zh...@um...> - 2006-10-05 19:50:51
|
Is there any easy fucntion to do that? Thanks |