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
(4) |
|
3
|
4
(9) |
5
(4) |
6
(9) |
7
(13) |
8
(11) |
9
(7) |
|
10
(7) |
11
(22) |
12
(19) |
13
(11) |
14
(20) |
15
(21) |
16
(1) |
|
17
(1) |
18
(8) |
19
(3) |
20
(5) |
21
(5) |
22
(9) |
23
(3) |
|
24
(3) |
25
(14) |
26
(12) |
27
(29) |
28
(18) |
29
(11) |
30
(2) |
|
From: Darren D. <dd...@co...> - 2005-04-27 11:16:20
|
Hi Dr. Pessenhofer,
On Wednesday 27 April 2005 4:12 am, Dr. Werner Pessenhofer wrote:
> ____________________________________________________
>
> #!/usr/bin/python
> #-*- coding: UTF-8 -*-
>
> from pylab import *
>
> X = load('Spektren-CuP-conv.dat',comments='#')
>
> hold(True)
>
> xlabel(r'$\rm{Wellenl\"ange / nm}$')
> ylabel('Extinktion')
> title('Spektren CuP')
>
> ind = 1
> while ind < 18:
> Y = take(X,(0,ind), 1)
> x = Y[:,0]
> y = Y[:,1]
> plot(x,y,'-')
> ind = ind + 2
>
> savefig("Spektren-CuP.ps",orientation="landscape")
>
> show()
> ________________________________________________________
>
> The first problem is, that all curves have the same color. Is there a
> possibility to "rotate" the colors in the loop ?
You could change plot(x,y,'-') to plot(x,y). It will default to the '-'
linestyle, and matplotlib will cycle the colors for you. Also, the examples
include a script called line_styles.py with this suggestion:
>
> Second question:
>
> With savefig("Spektren-CuP.ps",orientation="landscape"), the diagram do
> not fill the whole a4 page. I think, this is related to some configuration
> values, cause the resulting figure is not an a4 page but a BBox. Any hints
> where to change that ?
>
> Regards
>
> Werner
--
Darren S. Dale
Bard Hall
Department of Materials Science and Engineering
Cornell University
Ithaca, NY. 14850
dd...@co...
|
|
From: Dr. W. P. <w.p...@tu...> - 2005-04-27 08:13:13
|
Hi all,
I'm using matplotlib and Numeric since a few days ago, so I am not very =20
sophisticated in using python :-)
I want to use matplotlib to print automatically several spectras from a =20
file. This means, it takes the first column as x-value and the second, =20
fourth, sixth .... column as y-value.
The script I wrote:
____________________________________________________
#!/usr/bin/python
#-*- coding: UTF-8 -*-
from pylab import *
X =3D load('Spektren-CuP-conv.dat',comments=3D'#')
hold(True)
xlabel(r'$\rm{Wellenl\"ange / nm}$')
ylabel('Extinktion')
title('Spektren CuP')
ind =3D 1
while ind < 18:
Y =3D take(X,(0,ind), 1)
x =3D Y[:,0]
y =3D Y[:,1]
plot(x,y,'-')
ind =3D ind + 2
savefig("Spektren-CuP.ps",orientation=3D"landscape")
show()
________________________________________________________
The first problem is, that all curves have the same color. Is there a =20
possibility to "rotate" the colors in the loop ?
Second question:
With savefig("Spektren-CuP.ps",orientation=3D"landscape"), the diagram do=
=20
not fill the whole a4 page. I think, this is related to some configuratio=
n =20
values, cause the resulting figure is not an a4 page but a BBox. Any hint=
s =20
where to change that ?
Regards
Werner
--=20
DI Dr. Werner Pessenhofer
CPA - Computer Process Automation
Pl=FCddemanngasse 33
8010 Graz
Tel.: +43 (0) 676 346 70 08
FAX: +43 (0) 316 873 8772
|
|
From: Eric E. <ems...@ob...> - 2005-04-27 06:56:47
|
Hi, I recently sent a mail to matplotlib-users regarding the availability of 3 axes plots and histograms in 2/N D and got no feedback. I understand this may not be a very exciting issue but if anybody has any input there (see below), it would be welcome. Thanks in advance!! cheers Eric ============================================= 3 axes plot ======== The more I am using matplotlib, the more I like it. But using it more means I more often hit the limits of the code, so I was wondering if there is any plan for a routine to plot data points w.r.t 3 axes (so a perspective scatter plot with x,y,z, data and a viewing angle). Of course another (maybe more difficult) goal would be to be able to draw surfaces, but already a simple scatter plot in 3D would help tremendously there (I realize the concept of "axis" has then to be revised, but well I have no idea how much effort this is). (if there is no - coming - plan for this, is there any way around it?) histograms ======== I would like to produce histograms in N dimensions, the minimum being in 2D. Here is an example of what I wish to do: I have a set of P particles with x and y positions. I have a rectangular grid, defined by e.g. a sampling in x and a sampling in y, (e.g. samp_x=arange(-15,31,1) ..), and I wish to know how many particles are in each "pixel". I can do that in many different ways (using searchsorted from numarray, or abruptly using loops, etc) but I am now looking for a simple (fewer lines) and efficient way (as I am treating large sets of particles) to do this so that I would be able to use a function like: histogram_2D(x,y, samp_x, samp_y) would return a matrix with the number of particles in each corresponding pixel. and showhistogram_2D(x,y, samp_x, samp_y) would display it [using e.g. imshow or matshow] Any hint there (I realize this is more a numarray question but I thought of first asking your community first since someone may have done it already)? And maybe also of how to generalize this in N dimensions? (for 1D matplotlib has the hist function..) -- =============================================================== Observatoire de Lyon ems...@ob... 9 av. Charles-Andre tel: +33 4 78 86 83 84 69561 Saint-Genis Laval Cedex fax: +33 4 78 86 83 86 France http://www-obs.univ-lyon1.fr/eric.emsellem =============================================================== |
|
From: John H. <jdh...@ac...> - 2005-04-27 01:38:23
|
>>>>> "Karsten" == Karsten Wedel Jacobsen <kw...@fy...> writes:
Karsten> After that the build and install went smoothly. But now
Karsten> if I try to import pylab I get the following error:
Karsten> pixbuf_get_pixels_array ImportError: No module named
Karsten> _nc_backend_gdk
Karsten> As far as I can see it is still trying to use some
Karsten> gtk-stuff?
This is a bit of annoyance in the mpl setup. The backend that is
chosen at runtime is determined by the rc file (see
http://matplotlib.sf.net/.matplotlibrc) and the default backend in the
rc file is GTKAgg. Even if you turn GTK compilation off in setup.py,
the rc file still determines which backend is selected. You need to
copy that file from its default location (eg
/usr/share/matplotlib/.matplotlibrc) to your HOME directory and edit
the 'backend' setting to something else, eg TkAgg, WXAgg or QtAgg.
While debugging, it is helpful to create a simple script like
import pylab
pylab.plot([1,2,3])
pylab.show()
and run it with
> python myscript.py --verbose-helpful
which will show you which rc file is being loaded, which backend is
selected, what mpl version you are using, and so on.
Should help,
JDH
PS: the bug in pygtk2.4 in fedora core 3 is quite ease to fix. You
simply have to replace typename with another name like typename_ or
some other name as described in the FAQ.
|