Axes.
fill_between
(x, y1, y2=0, where=None, interpolate=False, step=None, **kwargs)¶Make filled polygons between two curves.
Create a PolyCollection
filling the regions between y1 and y2 where
where==True
Parameters: | x : array
y1 : array
y2 : array
where : array, optional
interpolate : bool, optional
step : {‘pre’, ‘post’, ‘mid’}, optional
|
---|
Notes
In addition to the above described arguments, this function can take a data keyword argument. If such a data argument is given, the following arguments are replaced by data[<arg>]:
Examples