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
(8) |
2
(11) |
3
(4) |
4
(6) |
|
5
(13) |
6
(30) |
7
(21) |
8
(9) |
9
(19) |
10
(4) |
11
(5) |
|
12
(14) |
13
(19) |
14
(22) |
15
(12) |
16
(15) |
17
(14) |
18
(1) |
|
19
(1) |
20
(11) |
21
(9) |
22
(18) |
23
(39) |
24
(12) |
25
(7) |
|
26
(13) |
27
(18) |
28
(3) |
29
(5) |
30
(12) |
31
(10) |
|
|
From: Alan G I. <ai...@am...> - 2008-10-08 21:06:06
|
On 10/7/2008 6:23 PM Michael apparently wrote:
> loop through the data and call clf():
The clf call seems quite wrong:
it flashes horribly and I get good
behavior without it (once I add
a call to sleep). What am I
missing?
Alan Isaac
PS The following almost works (i.e., works,
but then exits with an error).
import matplotlib.pyplot as plt
from time import sleep
from numpy import zeros
plt.ion()
plt.hold(False)
data = list()
slices = list()
for i in range(5):
frame = zeros( (200,200) )
frame[20:40,10*i:10*i+20] = 255
data.append(frame)
fig1 = plt.figure(1)
ax1 = fig1.gca()
for frame in data:
plt.imshow(frame, axes=ax1, animated=True)
sleep(0.2)
|
|
From: Venkat R. <ve...@sr...> - 2008-10-08 18:34:02
|
John Hunter wrote: > Unfortunatelym the API for the > latter has changed somewhat from 0.91 to 0.98, so I hesitate to tell > advise you to do this with 0.91 since it will break when you upgrade. > Please let me know the instructions as if the version is 0.98. I'll upgrade to it soon. Thanks, Venkat. |
|
From: Ondrej C. <on...@ce...> - 2008-10-08 18:31:55
|
On Wed, Oct 8, 2008 at 6:46 PM, Angus McMorland <am...@gm...> wrote: > Hi all, > > This is just a head's-up for those using debian and who upgrade > regularly. There's a problem with the latest debian package to hit > testing: 0.98.1-1, which is currently unusable, throwing up the error: > > ImportError: /usr/lib/python2.5/site-packages/matplotlib/nxutils.so: > undefined symbol: __gxx_personality_v0 > > It looks like someone has already decided what the appropriate fix is > (http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=501578&sourceid=mozilla-search). > Hopefully it'll make it through soon. You can just install python-matlotlib from unstable, it works fine for me. Ondrej |
|
From: John H. <jd...@gm...> - 2008-10-08 17:57:22
|
On Wed, Oct 8, 2008 at 12:23 PM, Venkat Ramanan <ve...@sr...> wrote: > for i in p.arange(1,nframes): > A=2*p.sin(2*p.pi*(1/float(2*nframes))*i) > sindata=A*p.sin(x) > line.set_ydata(sindata) # update the data > p.draw() # redraw the canvas The autoscaling infrastructure is not triggered when you manually set the line data, only when you add a line to the Axes, eg when you call "plot". You will need to either manually track this yourself and call "ax.set_ylim:" to set the ylimits manually, or resuse the matplotlib datalimits/autoscaling infrastructure. Unfortunatelym the API for the latter has changed somewhat from 0.91 to 0.98, so I hesitate to tell advise you to do this with 0.91 since it will break when you upgrade. JDH |
|
From: Venkat R. <ve...@sr...> - 2008-10-08 17:23:34
|
Hi all,
I'm trying to do a plot which is dynamically updated.
However, the axis limits remain fixed even when the data goes out of the
current ylim. Is there an easy way to keep the axis limits updated when
the data gets updated?
I've trivially modified the anim.py example to show the problem. The
sinusoid test data is updated with varying sinusoidal amplitude.
Using matplotlib 0.91.2
Thanks,
Venkat.
import pylab as p
import time
p.ion()
tstart = time.time() # for profiling
x = p.arange(0, 2*p.pi, 0.01) # x-array
i=0
nframes=100
A=2*p.sin(2*p.pi*(1/float(2*nframes))*i)
sindata=A*p.sin(x+i/10.0)
line, = p.plot(x, sindata)
ax=p.gca()
#ax.set_ylim(-2,2)
p.draw()
for i in p.arange(1,nframes):
A=2*p.sin(2*p.pi*(1/float(2*nframes))*i)
sindata=A*p.sin(x)
line.set_ydata(sindata) # update the data
p.draw() # redraw the canvas
print 'FPS:' , nframes/(time.time()-tstart)
|
|
From: Angus M. <am...@gm...> - 2008-10-08 16:46:26
|
Hi all, This is just a head's-up for those using debian and who upgrade regularly. There's a problem with the latest debian package to hit testing: 0.98.1-1, which is currently unusable, throwing up the error: ImportError: /usr/lib/python2.5/site-packages/matplotlib/nxutils.so: undefined symbol: __gxx_personality_v0 It looks like someone has already decided what the appropriate fix is (http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=501578&sourceid=mozilla-search). Hopefully it'll make it through soon. Angus. -- AJC McMorland Post-doctoral research fellow Neurobiology, University of Pittsburgh |
|
From: Vincent Favre-N. <vi...@us...> - 2008-10-08 10:42:48
|
On mercredi 08 octobre 2008, John [H2O] wrote: > Is there an alternative set up in matplotlib 0.98? I've just finished the > migration and porting my code so that basemap will work properly! Also, I > would really prefer not to use too many packages as it becomes difficult to > switch syntax constantly and deal with keeping the installations across > multiple machines up to date. Use mayavi.mlab. See the documentation for mlab at: http://code.enthought.com/projects/mayavi/docs/development/html/mayavi/mlab.html The 3D already looked great with mayavi, but with the (relatively) new mlab module, it's _really_ easy to use ! More links (but the one above should convince you). https://svn.enthought.com/enthought/wiki/MayaVi https://svn.enthought.com/enthought/wiki/Mayavi/Gallery <= screenshots http://code.enthought.com/projects/mayavi/docs/development/html/mayavi/ Only possible difficulty is that it's still not readily packaged for all linux distributions - I picked the development version (pre-3.0 ?) from svn using instructions from: https://svn.enthought.com/enthought/wiki/Build/ETS_3.0.0b1/Py2.5/Generic_Any_Any (see https://svn.enthought.com/enthought/wiki/Install before in case there are binaries already available for you). and it works very, very well. Under windows it's part of the Enthought python distribution. Vincent -- Vincent Favre-Nicolin CEA Grenoble/INAC/SP2M http://inac.cea.fr Univ. Joseph Fourier (Grenoble) http://www.ujf-grenoble.fr ObjCryst & Fox http://objcryst.sf.net/Fox |
|
From: John [H2O] <was...@gm...> - 2008-10-08 08:31:19
|
I was discouraged to read recently on Scipy's Cookbook / Matplotlib / mplot3D entry: "The examples below show simple 3D plots using matplotlib. matplotlib's 3D capabilities were added by incorporating John Porter's mplot3d module, thus no additional download is required any more, the following examples will run with an up to date matplotlib installation. Note, this code is not supported in matplotlib-0.98 and later, so please use the 0.91 maintenance release of matplotlib if you need this functionality." Is there an alternative set up in matplotlib 0.98? I've just finished the migration and porting my code so that basemap will work properly! Also, I would really prefer not to use too many packages as it becomes difficult to switch syntax constantly and deal with keeping the installations across multiple machines up to date. Advice? Thanks, john -- View this message in context: http://www.nabble.com/Dropped-mplot3d-support--Any-alternative-%21-tp19874545p19874545.html Sent from the matplotlib - users mailing list archive at Nabble.com. |
|
From: Eric F. <ef...@ha...> - 2008-10-08 00:22:12
|
Buchholz, Greg wrote:
> Is there a way to display more digits on the cursor readout in the
> lower right hand corner of the plot window? Right now my setup is only
> showing three digits to the right of the decimal point, which isn’t
> enough when I’m zoomed way in. If that description isn’t good enough to
> describe what I mean, take a look at the following screenshot:
Something like this (pylab-style example):
def fmt(x):
return "%10.5f" % x
ax = gca()
ax.fmt_xdata = fmt
ax.fmt_ydata = fmt
If the fmt_xdata and/or fmt_ydata attributes of the axes object are
callable, they are used to format the cursor readout.
Eric
>
>
>
> http://sleepingsquirrel.org/matplotlib/low-resolution-coords.PNG
>
>
>
> …or maybe I’m looking for a way to trace the individual displayed
> waveforms with the cursor, like on a digital oscilloscope, to ease in
> the taking of measurements. Any thoughts?
>
>
>
> Thanks,
>
>
>
> Greg
>
>
>
>
> ------------------------------------------------------------------------
>
> -------------------------------------------------------------------------
> This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
> Build the coolest Linux based applications with Moblin SDK & win great prizes
> Grand prize is a trip for two to an Open Source event anywhere in the world
> http://moblin-contest.org/redirect.php?banner_id=100&url=/
>
>
> ------------------------------------------------------------------------
>
> _______________________________________________
> Matplotlib-users mailing list
> Mat...@li...
> https://lists.sourceforge.net/lists/listinfo/matplotlib-users
|