fill_betweenx_wrapper¶
- fill_betweenx_wrapper(self, func, *args, **kwargs)[source]¶
Supports overlaying and stacking successive columns of data, and permits using different colors for “negative” and “positive” regions.
Note
This function wraps
fill_betweenxandareax.- Parameters
*args ((x1,), (y, x1), or (y, x1, x2)) – The y and x coordinates. If
yis not provided, it will be inferred fromx1. Ifx1andx2are provided, this function will shade between respective columns of the arrays. The default value forx2is0.stacked (bool, optional) – Whether to “stack” successive columns of the
x1array. If this isTrueandx2was provided, it will be ignored.negpos (bool, optional) – Whether to shade where
x1is greater thanx2with the colorposcolor, and wherex1is less thanx2with the colornegcolor. For example, to shade positive values red and negative values blue, useax.fill_betweenx(y, x, negpos=True).negcolor, poscolor (color-spec, optional) – Colors to use for the negative and positive shaded regions. Ignored if
negposisFalse. Defaults arerc.negcolor='blue7'andrc.poscolor='red7'.where (ndarray, optional) – Boolean ndarray mask for points you want to shade. See this example.
lw, linewidth (float, optional) – The edge width for the area patches.
edgecolor (color-spec, optional) – The edge color for the area patches.
- Other Parameters
**kwargs – Passed to
fill_between.