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
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
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
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 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
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
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
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
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