[Matplotlib-users] gimmicks/eye candy: Is for example fading possible?

2011-06-21 Thread Paul Menzel
Dear Matplotlib folks, is it possible in Matplotlib to add eye candy or gimmicks to the plots like fading? For example if I want to just show a subpart(?) of a plot this would like “cool”. (I am pretty sure that opinions differ if such things are useful or not, but please leave this out of the di

Re: [Matplotlib-users] plotting all paths of a simple random walk

2011-06-21 Thread josef . pktd
On Tue, Jun 21, 2011 at 5:25 PM, Paul Menzel wrote: > Am Dienstag, den 21.06.2011, 09:43 -0400 schrieb josef.p...@gmail.com: >> On Tue, Jun 21, 2011 at 8:47 AM, Paul Menzel wrote: > >> > I want to plot all paths of a simple random walk and wrote the following >> > recursive program based on the Pa

Re: [Matplotlib-users] plotting all paths of a simple random walk

2011-06-21 Thread Paul Menzel
Am Dienstag, den 21.06.2011, 09:43 -0400 schrieb josef.p...@gmail.com: > On Tue, Jun 21, 2011 at 8:47 AM, Paul Menzel wrote: > > I want to plot all paths of a simple random walk and wrote the following > > recursive program based on the Path tutorial [1]. > > > >import matplotlib.pyplot as

Re: [Matplotlib-users] is a changing background color possible?

2011-06-21 Thread Justin McCann
On Tue, Jun 21, 2011 at 1:50 PM, Frank wrote: > matplotlib python: How do you change the background color of a line plot > according to a given column? Say I have the following data file >... > 2. 1 > 3. 1 > 3. 2 > > The first column represents the y-values, and the 2nd column should control > the

[Matplotlib-users] is a changing background color possible?

2011-06-21 Thread Frank
matplotlib python: How do you change the background color of a line plot according to a given column? Say I have the following data file 1. 0 4. 0 2. 0 1. 1 2. 1 3. 1 3. 2 1. 2 2. 2 The first column represents the y-values, and the 2nd column should control the background color. Say, it plots the

Re: [Matplotlib-users] plotting all paths of a simple random walk

2011-06-21 Thread josef . pktd
On Tue, Jun 21, 2011 at 8:47 AM, Paul Menzel < paulepan...@users.sourceforge.net> wrote: > Dear Matplotlib folks, > > > I want to plot all paths of a simple random walk and wrote the following > recursive program based on the Path tutorial [1]. > >import matplotlib.pyplot as plt >f

[Matplotlib-users] plotting all paths of a simple random walk

2011-06-21 Thread Paul Menzel
Dear Matplotlib folks, I want to plot all paths of a simple random walk and wrote the following recursive program based on the Path tutorial [1]. import matplotlib.pyplot as plt from matplotlib.path import Path import matplotlib.patches as patches def dra

[Matplotlib-users] displaying plain data without fancy features (wx)

2011-06-21 Thread kafooster
Hello, I am trying to display an array with imshow(), however I want to 'turn off' display of axes, numbers, and all that extra stuff which comes with it. I want only my array(grayscale image) to be shown ### import wx import matplotlib matplotlib.use( 'WXAgg' ) from mat

Re: [Matplotlib-users] How to Add Minor Ticks to Auto-Scaled Axis?

2011-06-21 Thread Mike Kaufman
I'm not sure exactly how you want your minor ticks, but you can try this LinearMinorLocator (which is not in the distribution yet). If you're conversant with git you can find the branch here: https://github.com/matplotlib/matplotlib/pull/122 M On 6/19/11 3:20 PM, matplotlib.coral...@xoxy.net