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
(24) |
3
(2) |
|
4
|
5
(4) |
6
(1) |
7
(22) |
8
(9) |
9
(23) |
10
(6) |
|
11
|
12
(7) |
13
(17) |
14
(12) |
15
(10) |
16
(22) |
17
(11) |
|
18
(6) |
19
(11) |
20
(13) |
21
(10) |
22
(7) |
23
(7) |
24
(5) |
|
25
(3) |
26
(20) |
27
(17) |
28
(25) |
29
(16) |
30
(17) |
31
(8) |
|
From: Eric F. <ef...@ha...> - 2007-03-08 20:46:27
|
Uwe Schmitt wrote:
> Hi,
>
> I would like to plot contours with a nonlinear mapping from values to
> color as follows:
>
> -1 -> red
> 0 -> white or green or black
> +1 -> red
>
> How can I achieve this ?
See examples/contourf_demo.py. The relevant part is this:
# Now make a contour plot with the levels specified,
# and with the colormap generated automatically from a list
# of colors.
levels = [-2, -1.5, -1, -0.5, 0, 0.5, 1, 1.5]
CS3 = contourf(X, Y, Z, levels,
colors = ('r', 'g', 'b'),
origin=origin)
Try specifying 4 levels; I think this would do what you want (with black
for the middle range, for example):
levels = [-1.5, -0.5, 0.5, 1.5]
CS = contourf(X, Y, Z, levels, colors=('r', 'k', 'r'))
Eric
>
> Greetings, Uwe
>
>
> -------------------------------------------------------------------------
> 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...> - 2007-03-08 20:04:48
|
John Pye wrote: > Hi Eric > > I tried the new spy function under Windows and it seemed to work OK. A > great leap forward, actually, given the problems I had been seeing. > Merging the spy functions was a good idea (does it work ok for very very > large, very sparse matrices?) I don't know any reason it would not, but I have not tried it. > > Trying it under Ubuntu was less straightforward. I built an RPM (python > setup.py bdist_rpm) then converted it to deb package then installed it. > It complained about my old ~/.matplotlib/matplotlibrc file so I moved it > out of the way. Then I fired up again and it was OK. That sounds like the hard way. I find it easy to build and install directly from source--from svn in my case, but from a tarball should be the same. I install it in /usr/local instead of /usr/ so as to keep the distinction between things installed as packages and custom installations. > > In my new Ubuntu install of matplotlib, sans matplotlibrc, I would like > to switch GUIs to GTKAgg but there doesn't seem to be a > /etc/matplotlibrc file from which to base my configuration. Is this a > fault of my rpm-to-deb process, or something that failed during build? > Is it still possible to run the GTKAgg GUI? Has the config system changed? A system-wide matplotlibrc file should get installed somewhere--try using "locate" to find it. I think a change was made since 0.90 such that yours will be in a different place than mine is now. If it turns out that it got lost in the rpm-to-deb conversion, then look at matplotlibrc.template in the source directory. With a couple of string substitutions you can manually turn that into a valid matplotlibrc file and specify your numerix (numpy, I hope) and backend. You can always put it in your ~/.matplotlib directory, and make local copies in working directories if you want different defaults for a given project. > > Finally, can I suggest that the website be updated with some information > about the new release? I couldn't find any readable information about it > on-line -- had to go to the tarball. I think generally the matplotlib > community would benefit from more frequently updated website. While I'm > at it, maybe I could suggest a matplotlib wiki that gets a bit more > prominance on the homepage and that is *separate* from the scipy one, > since the scipy wiki gives completely mixed messages about what plotting > engine is preferred (chaco.wx and VTK and so on) -- it can't be helping > the matplotlib cause. > http://matplotlib.sourceforge.net/whats_new.html (bit out of date) Thanks for the good suggestions. I agree that there could be improvements--it is just a question of who can find the time and motivation to make them, amid competing pressures. Eric > > Cheers > JP |
|
From: Suresh P. <sto...@ya...> - 2007-03-08 18:50:34
|
If one inserts a colorbar after using matshow, then the matrix plot's aspect ratio is incorrect altered. Here are 2 cases to compare import pylab matrix = pylab.rand(30,30) 1) matshow() before colorbar() pylab.matshow(matrix) pylab.colorbar() pylab.show() The matrix plot is squished in the x-direction while not in the y thus losing its proper aspect ratio (equal by default). 2) imshow() before colorbar() pylab.imshow(matrix) pylab.colorbar() pylab.show() Everthing is okay in this case. Thanks, Suresh |
|
From: Ken M. <mc...@ii...> - 2007-03-08 18:05:49
|
Uwe, I don't know the answer to your question, but yesterday Rob Hetland sent out and email entitled "Creating a non-linear colormap." that includes example code. That might help you get started. Ken |
|
From: Uwe S. <usc...@mi...> - 2007-03-08 15:09:04
|
Hi,
I would like to plot contours with a nonlinear mapping from values to
color as follows:
-1 -> red
0 -> white or green or black
+1 -> red
How can I achieve this ?
Greetings, Uwe
|
|
From: Uwe S. <usc...@mi...> - 2007-03-08 15:00:47
|
Hi, I have a problem. The following script crashes:
from pylab import *
a=arange(1500).reshape(50,30)
figure()
figimage(a)
show()
Python says:
Traceback (most recent call last):
File "crash.py", line 5, in ?
figimage(a)
File "c:\Python24\lib\site-packages\matplotlib\pylab.py", line 810, in
figimage
draw_if_interactive()
File
"c:\Python24\lib\site-packages\matplotlib\backends\backend_tkagg.py",
line 59, in draw_if_interactive
figManager.show()
File
"c:\Python24\lib\site-packages\matplotlib\backends\backend_tkagg.py",
line 301, in show
self.canvas.draw()
File
"c:\Python24\lib\site-packages\matplotlib\backends\backend_tkagg.py",
line 151, in draw
FigureCanvasAgg.draw(self)
File
"c:\Python24\lib\site-packages\matplotlib\backends\backend_agg.py", line
398, in draw
self.figure.draw(renderer)
File "c:\Python24\lib\site-packages\matplotlib\figure.py", line 515,
in draw
im.draw(renderer)
File "c:\Python24\lib\site-packages\matplotlib\image.py", line 473, in
draw
renderer.draw_image(self.ox, self.oy, im, self.origin, self.figure.bbox)
IndexError: Unexpected SeqBase<T> length.
This application has requested the Runtime to terminate it in an
unusual way.
Please contact the application's support team for more information.
As you can see, I'm using Python 2.4. Matplotlib is from the Enthought
Python Edition,
version number is 0.87.2. I tried Google, but looking for "Unexpected
SeqBase matplotlib" did not help me.
Any hints ?
Greetings, Uwe
|
|
From: Marcel O. <m.o...@iu...> - 2007-03-08 13:54:47
|
Dear all: I am trying the numpy-scipy-matplotlib stack on Opensuse 10.2 from http://repos.opensuse.org/science/openSUSE_10.2/i586/ No success with matplotlib, however. Two problems: - No plot windows open at all - When using TeX ouput, ghostscript segfaults: sh: line 1: 11319 Segmentation fault gs -dBATCH -dNOPAUSE -r6000 -sDEVICE=pswrite -sPAPERSIZE=letter -sOutputFile="/tmp/ef684d47fbac423478eccceef602c8ca.ps" "/tmp/ef684d47fbac423478eccceef602c8ca" >"/tmp/ef684d47fbac423478eccceef602c8ca.output" So in short, nothing works. Has anybody been successfully running this RPM? (Background: This is for the teaching lab computers at my university where I'd like to experiment with in-class use of scipy. I have an agreement with the sysadmin that he'd install numpy-scipy-matplotlib if it runs "out-of-the-box" from a standard repository without any manual fiddling. Otherwise, I'd be out of luck. On my personal workstation I run Fedora where I never had any problem with the "official" RPMs from Fedora Extra...) Regards, Marcel PS.: Yes, I got past the BLAS/Lapack problem. Short answer: Don't use the official blas and lapack packages from Suse, they are incomplete. Use the RPMs from the repository above. |
|
From: Jeff P. <jef...@ya...> - 2007-03-08 07:11:30
|
hello, I have an application I'm working on, and I need to remove figtext() without using a figure.clear(). how can I do this? thanks. Jeff --------------------------------- The fish are biting. Get more visitors on your site using Yahoo! Search Marketing. |
|
From: John P. <joh...@st...> - 2007-03-08 01:29:48
|
Hi Eric I tried the new spy function under Windows and it seemed to work OK. A great leap forward, actually, given the problems I had been seeing. Merging the spy functions was a good idea (does it work ok for very very large, very sparse matrices?) Trying it under Ubuntu was less straightforward. I built an RPM (python setup.py bdist_rpm) then converted it to deb package then installed it. It complained about my old ~/.matplotlib/matplotlibrc file so I moved it out of the way. Then I fired up again and it was OK. In my new Ubuntu install of matplotlib, sans matplotlibrc, I would like to switch GUIs to GTKAgg but there doesn't seem to be a /etc/matplotlibrc file from which to base my configuration. Is this a fault of my rpm-to-deb process, or something that failed during build? Is it still possible to run the GTKAgg GUI? Has the config system changed? Finally, can I suggest that the website be updated with some information about the new release? I couldn't find any readable information about it on-line -- had to go to the tarball. I think generally the matplotlib community would benefit from more frequently updated website. While I'm at it, maybe I could suggest a matplotlib wiki that gets a bit more prominance on the homepage and that is *separate* from the scipy one, since the scipy wiki gives completely mixed messages about what plotting engine is preferred (chaco.wx and VTK and so on) -- it can't be helping the matplotlib cause. http://matplotlib.sourceforge.net/whats_new.html (bit out of date) Cheers JP Eric Firing wrote: > > John Pye wrote: > >> >> Hi all >> >> >> >> I have got some funny behaviour here that looks like a bug with the >> >> spy() function. Using the latest python-matplotlib 0.87.5 package on >> >> Ubuntu 6.10, I try: >> >> >> >> $ ipython -pylab >> >> from scipy import io >> >> M = io.mmread('gd.mm') >> >> spy(M) >> >> M.shape >> >> M.nnz >> >> >> >> It looks great and I get the necessary number of dots on my 'spy' plot. >> >> Then: >> >> >> >> spy(M.todense()) >> >> >> >> This seems to plot only half of the points. At first I thought the >> >> 'todense' function must be to blame, however: >> >> >> >> D = M.todense() >> >> for i in range(0,231): >> >> for j in range(0,231): >> >> if D[i,j]: >> >> print i,j,D[i,j] >> >> >> >> gave me the right data, so it really looks like a bug with spy(). >> >> >> >> And FWIW spy2(M) fails with an error, whereas spy2(D) shows the same bug >> >> as spy(D). >> >> >> >> Is this something that has been fixed in the new 0.90 release? >> > > > > The two versions of spy were merged into one, with some rewriting, in > > 0.90. Please give it a try and see if the problem persists. > > > > Eric > |