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
(22) |
2
(17) |
3
(21) |
4
(7) |
5
(7) |
6
(17) |
7
(8) |
8
(8) |
9
(33) |
10
(11) |
11
|
12
(2) |
13
(11) |
14
(29) |
15
(13) |
16
(13) |
17
(3) |
18
(2) |
19
(3) |
20
(7) |
21
(17) |
22
(12) |
23
(19) |
24
(19) |
25
(14) |
26
(5) |
27
(25) |
28
(13) |
|
|
|
|
From: Eric F. <ef...@ha...> - 2006-02-04 17:50:20
|
Pavol Severa wrote: > Hello > > I'd like to ask you how to make the ticks on the axes to protrude out > of the picture (I have a picture with some dark areas where the ticks > are virtually invisible; if the ticks were at least partially outside, > it would solve the problem). Pavol, In your matplotlibrc file you can set the tick direction: ... xtick.direction : in # direction: in or out ... ytick.direction : in # direction: in or out ... Alternatively, interactively or within a script you can use: rcParams['xtick.direction'] = 'out' rcParams['ytick.direction'] = 'out' Eric |
From: Samuel M. S. <sm...@sa...> - 2006-02-04 16:38:40
|
I would like to create an animation that shows the path of a vehicle moving along a trajectory. The vehicle could be represented by a small circle with and arrow pointing along the vehicle's current heading. It would be nice to leave a bread crumb trail of the vehicles path as a line. I found documentation on making animations and movies but plotting a sequence of plots. But I am not sure how I create or plot the circle plus arrow and then move it for the next plot. (unless I just replot the whole plot everyframe) The Animation cookbook apparently provides some hints but I am a little lost as to where to begin. Do I need to create an artist? or a cursor? I am using WxAgg on Mac Os X 10.4.4 although I could use another OS X supported backend if it would be easier than WXAgg. Any hints or a get started example Sam |
From: Samuel M. S. <sm...@sa...> - 2006-02-04 15:59:50
|
Darrel, I this other thread you mention recent changes to the tex font handling. I am assuming that these are not in the 0.86.2 distribution? Is this related to my poor resolution problem? > I made some improvements to the usetex option over the last few > days in order > to make font selection fit seemlessly with the rest of Matplotlib. > The usetex > option will now respect the serif, sans-serif, monospace, and > cursive rc > settings. Usetex looks until it finds a latex-compatible font, or > defaults to > computer modern. Proper font support with plainTeX is more > difficult, and > everyone seems to use the latex backend anyway, so I am dropping > support of > the tex engine. With these changes, the font.latex.package and the > text.tex.engine rc settings are no longer needed, and should be > removed from > ones personal matplotlibrc file. |
From: Andrea G. <and...@ti...> - 2006-02-04 15:58:20
|
Hello NG, I am having a couple of problems with Matplotlib embedded in wxPython; both are related to the Pylab twinx() function and its corresponding Matplotlib API call. Problem 1: Using the following script: ---------------------------------------------- #!/usr/bin/env python from pylab import * ax1 = subplot(111) t = arange(0.01, 10.0, 0.01) s2 = sin(2*pi*t) plot(t, s2, 'r.') ylabel('sin') # turn off the 2nd axes rectangle with twinx() ax2 = twinx() s1 = exp(t) plot(t, s1, 'b-') xlabel('time (s)') ylabel('exp') show() ---------------------------------------------- Everything works fine but the exponential factor for which the right axis scale is multiplied ("x1e4") is positioned on the left axis, which is clearly misleading. Problem 2: Using the corresponding Matplotlib API calls to use twinx() embedded in wxPython, the same problem as above appears *and* the ylabel for the right axis is positioned on the left axis instead: so I end up with 2 ylabels on the same axis. The script I am running is this one: ---------------------------------------------- #!/usr/bin/env python import wx import matplotlib matplotlib.use('WXAgg') from matplotlib.backends.backend_wxagg import \ FigureCanvasWxAgg as FigureCanvas from matplotlib.figure import Figure from matplotlib.numerix import arange, sin, exp, pi # wxPython part app = wx.PySimpleApp() frame = wx.Frame(None, -1, "MPL Test", (400, 400)) fig = Figure() canvas = FigureCanvas(frame, -1, fig) sizer = wx.BoxSizer(wx.VERTICAL) sizer.Add(canvas, 1, wx.LEFT|wx.TOP|wx.GROW) frame.SetSizer(sizer) sizer.Layout() # Plotting part: Left Axis leftaxis = fig.add_subplot(111) leftaxis.yaxis.tick_left() t = arange(0.01, 10.0, 0.01) s2 = sin(2*pi*t) leftaxis.plot(t, s2, 'r.') leftaxis.set_ylabel('sin') # Plotting part: Left Axis rightaxis = fig.add_subplot(111, frameon=False) rightaxis.yaxis.tick_right() s1 = exp(t) rightaxis.plot(t, s1, 'b-') rightaxis.set_xlabel('time (s)') rightaxis.set_ylabel('exp') # wxPython starts frame.CenterOnScreen() frame.Show() app.MainLoop() ---------------------------------------------- If that matters, I am using Matplotlib 0.86.2 on Windows XP/2000, Python 2.4.1, wxPython 2.6.2.1. Thanks in advance for every hint. Andrea. "Imagination Is The Only Weapon In The War Against Reality." http://xoomer.virgilio.it/infinity77 |
From: Samuel M. S. <sm...@sa...> - 2006-02-04 15:51:56
|
On 03 Feb, 2006, at 16:43, Darren Dale wrote: > Try setting your ps.distiller.res rc setting to 6000. Does that > help? If so, > let me know and I will make a comment on the wiki. These are my ps backend settings I tried False, Ghostscript, and xpdf for the ps.usedistiller but no change in the onscreen output in every case ps.distiller.res was set to 6000 # ps backend params ps.papersize : letter # executive, letter, legal, ledger, A0- A10, B0-B6, C0-C6 ps.useafm : False # use of afm fonts -- breaks mathtext but results in small files ps.usedistiller : xpdf # can be: None, ghostscript or xpdf # Experimental: may produce smaller files. # xpdf intended for production of publication quality files, # but requires ghostscript, xpdf and ps2eps ps.distiller.res : 6000 # dpi I set verbose level to debug. Here is the console output when I run the tex demo. It seems that it is not using a tex font on screen even though usetex is true. It appears to use a tex font in the eps file I get this output numerix numpy 0.9.5.2006 font search path ['/Library/Frameworks/Python.framework/Versions/2.4/ lib/python2.4/site-packages/matplotlib-0.86.2cvs-py2.4-macosx-10.4- ppc.egg/matplotlib/mpl-data'] trying fontname /Library/Frameworks/Python.framework/Versions/2.4/lib/ python2.4/site-packages/matplotlib-0.86.2cvs-py2.4-macosx-10.4- ppc.egg/matplotlib/mpl-data/Vera.ttf $HOME=/Users/smithsm CONFIGDIR=/Users/smithsm/.matplotlib loaded ttfcache file /Users/smithsm/.matplotlib/ttffont.cache matplotlib data path /Library/Frameworks/Python.framework/Versions/ 2.4/lib/python2.4/site-packages/matplotlib-0.86.2cvs-py2.4- macosx-10.4-ppc.egg/matplotlib/mpl-data backend WXAgg version 2.6.2.1 findfont failed New Century Schoolbook findfont failed Century Schoolbook L findfont failed Utopia findfont failed ITC Bookman findfont failed Bookman findfont found Bitstream Vera Serif, normal, normal 500, normal, 16.0 findfont returning /Library/Frameworks/Python.framework/Versions/2.4/ lib/python2.4/site-packages/matplotlib-0.86.2cvs-py2.4-macosx-10.4- ppc.egg/matplotlib/mpl-data/VeraSe.ttf findfont failed New Century Schoolbook findfont failed Century Schoolbook L findfont failed Utopia findfont failed ITC Bookman findfont failed Bookman findfont found Bitstream Vera Serif, normal, normal 500, normal, 12.0 findfont returning /Library/Frameworks/Python.framework/Versions/2.4/ lib/python2.4/site-packages/matplotlib-0.86.2cvs-py2.4-macosx-10.4- ppc.egg/matplotlib/mpl-data/VeraSe.ttf This is dvips(k) 5.95b Copyright 2005 Radical Eye Software (www.radicaleye.com) ' TeX output 2006.02.03:1330' -> /tmp/ 1d2e640b7c7d6320cb57dd91740b0da8.ps <tex.pro><psfrag.pro><texps.pro><special.pro><color.pro>. <cmti10.pfb> <cmbx10.pfb><cmmi10.pfb><cmsy10.pfb><cmr8.pfb><cmmi8.pfb><cmex10.pfb> <cmsy8.pfb><cmr10.pfb>[1<1d2e640b7c7d6320cb57dd91740b0da8.eps>] here is a pdf of the eps file |
From: Pavol S. <pav...@gm...> - 2006-02-04 14:27:41
|
Hello I'd like to ask you how to make the ticks on the axes to protrude out of the picture (I have a picture with some dark areas where the ticks are virtually invisible; if the ticks were at least partially outside, it would solve the problem). |
From: Andrea G. <and...@ti...> - 2006-02-04 11:15:05
|
Hello NG, I was surfing over the matplotlib classes API, and I didn't find anything about a way to connect an event like a mouse left double-click. Is this actually possible? If this is not, is there a way to hack the button_press_event handler in a way to discard the first click (maybe based on a time.time() call?) and take only the second click if, say, less than 1 second is gone after the first click? Thanks in advance for every idea. Andrea. "Imagination Is The Only Weapon In The War Against Reality." http://xoomer.virgilio.it/infinity77 |