Axes.
fill_betweenx
(y, x1, x2=0, where=None, step=None, **kwargs)¶Make filled polygons between two horizontal curves.
Call signature:
fill_betweenx(y, x1, x2=0, where=None, **kwargs)
Create a PolyCollection
filling the regions between x1 and x2 where
where==True
Parameters: | y : array
x1 : array
x2 : array, optional
where : array, 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