Hi Mauricio,
Patch objects are a bit more difficult to work with than line objects,
because unlike line objects are a step removed from the input data supplied
by the user. There is an example similar to what you want to do here:
http://matplotlib.org/examples/animation/histogram.html
Basically,
Thank you Jake.
I will take a look at this example with care.
Cheers!
On Sun, Feb 2, 2014 at 2:10 PM, Jacob Vanderplas
wrote:
> Hi Mauricio,
> Patch objects are a bit more difficult to work with than line objects,
> because unlike line objects are a step removed from the input data supplied
>
Hi there,
I have the following simple code to plot a (static) fill_between region in
a given plot.
import numpy as np
import matplotlib. pyplot as plt
plt.figure()
ax=plt.axes()
ax.set_xlim([0,1])
x = np.linspace(6000.,7000.)
y = np.ones(np.shape(x))
plt.fill_between(x,y)
I would like