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
(3) |
2
(9) |
3
(4) |
|
4
(1) |
5
|
6
(5) |
7
(8) |
8
(11) |
9
(15) |
10
(5) |
|
11
(2) |
12
|
13
(7) |
14
(4) |
15
(13) |
16
(6) |
17
(1) |
|
18
|
19
(16) |
20
(10) |
21
(13) |
22
(13) |
23
(3) |
24
(1) |
|
25
(3) |
26
(4) |
27
(1) |
28
(6) |
29
(6) |
30
(1) |
31
|
|
From: Jonathan H. <ha...@ph...> - 2004-07-08 23:26:45
|
I'm having issues importing matplotlib into my python script, but only
when runing under PHP.
The line:
from matplotlib import *
causes my .py script to return an error code "1" when being called from
inside a PHP script. However, the script runs just fine when called
from the command line.
If i comment out the above line and all the matplotlib-related commands
in my script, it will run just fine (but without plots of course). But
the include command alone is enough to cause an error 1 return.
I have been through every documentation source I can find, I've tried
every variation of import i can think of, and I've come up with a big
fat 0. I've tried something like:
sys.path.append("/usr/lib/python2.3/site-packages/matplotlib")
after the sys import and before the matplotlib import thinking there was
a path issue with the apache user, and got jack squat out of that.
Has anyone else had issues calling python scripts from inside PHP? All
my other imports below:
# Module Imports
from optparse import OptionParser
import sys
#from matplotlib import *
from os import listdir
from string import split
from array import array
from time import time#, ctime
work just fine. I've been on this for 3 solid days, someone either
shoot me or help me! Thanks.
|
|
From: Paul B. <ba...@st...> - 2004-07-08 22:50:18
|
Flavio Codeco Coelho wrote: > Hi John, > > look at this strange bug in mathtext: > > from matplotlib.matlab import * > >>> plot([1,2,3]) > [<matplotlib.lines.Line2D instance at 0x4120f4cc>] > >>> title(r'$\alpha=6.6$') > <matplotlib.text.Text instance at 0x4120f46c> > >>> show() > > > the two sixes in the title are replaced by '&' resulting in: \alpha=&.& > > I am running 0.54.2 > > thanks > Flávio Codeço Coelho, PhD > Programa de Computação Científica > Fundação Oswaldo Cruz > Rio de Janeiro -- Brasil > > > ------------------------------------------------------------------------ > Yes. While working on Postscript support for TrueType Fonts, I came across this bug. It will be fixed in a future release. -- Paul -- Paul Barrett, PhD Space Telescope Science Institute Phone: 410-338-4475 ESS/Science Software Branch FAX: 410-338-4767 Baltimore, MD 21218 |
|
From: John H. <jdh...@ac...> - 2004-07-08 22:17:11
|
>>>>> "Rein" == Rein van den Boomgaard (UvA) <re...@sc...> writes:
Rein> What is the prefered way to read in images in
Rein> numarray/matplotlib?
No good way, currently. I plan to add a PNG loader in the near
future. Would this suffice for you? What do you think are the core
set of image formats that matplotlib should support? ... the fewer the
better!
Rein> I know of PIL but it seems like a lot of overlap with
Rein> numarray just to read an image from file.
True, but for the record, here is the recipe I use to do the PIL ->
numerix conversion
import Image
from matplotlib.matlab import *
im = Image.open('../data/leo_ratner.jpg')
s = im.tostring() # convert PIL image -> string
# convert string -> numerix array of floats
rgb = fromstring(s, UInt8).astype(Float)/255.0
# resize to RGB array
rgb = resize(rgb, (im.size[1], im.size[0], 3))
imshow(rgb, interpolation='nearest')
axis('off') # don't display the image axis
show()
|
|
From: Jeffrey J. <Jef...@gs...> - 2004-07-08 22:12:50
|
I am preparing to install matplotlib on a Mac OS X system (10.3.4). The installation page says I need to install freetype2. I already have Apple's X11 and X11sdk. I noticed that /usr/X11R6/lib contains libfreetype.a and libfreetype.dylib (the latter is a pointer to libfreetype.6.3.dylib). Is this what I need? If so, how do I tell matplotlib to use it? Also, if this is the same thing, any idea what "6.3" means in libfreetype.6.3.dylib? The tar file I got from the freetype web site is named freetype-2.1.9.tar, so it doesn't appear to make sense as a version number. Jeffrey Jones | email: jef...@gs... Code 975 - SSAI | phone: 301.614.5721 NASA/Goddard Space Flight Center | FAX: 301.614.5558 Greenbelt, MD 20771 USA | office: Bldg 33, Rm B406 |
|
From: danny s. <dan...@ya...> - 2004-07-08 22:08:03
|
Howdy, Is there an easy way to turn off the minor gridlines in a (semi)log plot? I just want the ones that are at the powers of ten. thanks, Danny __________________________________ Do you Yahoo!? Read only the mail you want - Yahoo! Mail SpamGuard. http://promotions.yahoo.com/new_mail |
|
From: Jared W. <wah...@um...> - 2004-07-08 21:52:24
|
Hi, Anyone is welcome to work on the SVG backend. I didn't realize that John thought I was hard at work on improving it, when actually I've been happily using it. Sorry for not communicating that... I'm not going to have any time to work on it in the near future, so go nuts. I'm an amateur, so there are plenty of bugs! :) On Thu, 2004-07-08 at 16:16, John Hunter wrote: > There is an SVG backend already in matplotlib. It hasn't been > announced because it is in development by Jared Wahlstrand. Perhaps > Jared can give a status report on what needs to be done, and you might > want to help out. He might have a more recent copy in his development > tree than I do. > > Here are the issues as I understand them: > > * image support This is waiting on a save_image function in the Agg backend, so that we can link to an external PNG file. > * font support (freetype vs afm), use of font families / > font_manager Is this the issue of 'helvetica' versus 'sans serif'? > * mathtext I don't know where to begin here, but the implementation is going to look a lot like the PS backend. It would be cool to embed MathML, but good luck finding a viewer capable of reading it... :) > * some oddness when the user calls savefig with a high dpi? > Shouldn't SVG ignore the dpi setting? That's what I did in > backend_ps. You're right, it shouldn't need to know the dpi. This is an artifact from when I ported everything from the PS backend. > * There also appears to be some problem in centering the figure? I haven't experienced this. I've been using it to export to inkscape to make figures for papers and conference talks and haven't had any major problems. The code in 0.60 is the same as I've been using, with the exception of adding another case to print_figure() to switch to the SVG backend when the filename has a .svg extension. It's not complicated code, so it should be easy to understand, but let me know if you have any questions. Cheers, Jared |
|
From: John H. <jdh...@ac...> - 2004-07-08 20:40:32
|
>>>>> "Eric" == Eric Jonas <jo...@co...> writes:
>> touch bitmap figures again. I could do entire conference
>> posters in SVG! If Justin's not interested and would accept a
>> patch, I might be willing to try and tackle this...
Eric> By which of course I mean John, or perhaps Dr. Hunter...
John works for me :-)
There is an SVG backend already in matplotlib. It hasn't been
announced because it is in development by Jared Wahlstrand. Perhaps
Jared can give a status report on what needs to be done, and you might
want to help out. He might have a more recent copy in his development
tree than I do.
Here are the issues as I understand them:
* image support
* font support (freetype vs afm), use of font families /
font_manager
* mathtext
* some oddness when the user calls savefig with a high dpi?
Shouldn't SVG ignore the dpi setting? That's what I did in
backend_ps.
* There also appears to be some problem in centering the figure?
I've only been testing this a bit - my SVG viewer doesn't seem to work
too well.
JDH
|
|
From: Eric J. <jo...@co...> - 2004-07-08 19:33:59
|
> touch bitmap figures again. I could do entire conference posters in SVG!
> If Justin's not interested and would accept a patch, I might be willing
> to try and tackle this...
By which of course I mean John, or perhaps Dr. Hunter...
...Eric
|
|
From: Eric J. <jo...@co...> - 2004-07-08 19:29:25
|
I second this question / request. The inkscape (inkscape.org) people are making a full-featured Illustrator-like replacement for vector illustration, and if matplotlib could generate SVGs, I'd never have to touch bitmap figures again. I could do entire conference posters in SVG! If Justin's not interested and would accept a patch, I might be willing to try and tackle this...=20 ...Eric On Thu, 2004-07-08 at 11:53, Flavio Codeco Coelho wrote: > Hi, >=20 > Is there a way to save vectorial figs? AGG is a vectorial renderer so > at least for this backend it should be possible... >=20 > Fl=C3=A1vio Code=C3=A7o Coelho, > PhD > Programa de Computa=C3=A7=C3=A3o > Cient=C3=ADfica > Funda=C3=A7=C3=A3o Oswaldo Cruz > Rio de Janeiro -- > Brasil >=20 >=20 > ______________________________________________________________________ |