fill_between_extras¶
- fill_between_extras(self, *args, **kwargs)[source]¶
Support overlaying and stacking successive columns of data, and permits using different colors for “negative” and “positive” regions.
Important
This function wraps
fill_betweenandarea.- Parameters
*args ((y1,), (x, y1), or (x, y1, y2)) – The x and y coordinates. If
xis not provided, it will be inferred fromy1. Ify1andy2are provided, this function will shade between these points. Ify1ory2are 2D, this function is called with each column. The default value fory2is0.stack, stacked (bool, optional) – Whether to “stack” successive columns of the
y1array. If this isTrueandy2was provided, it will be ignored.negpos (bool, optional) – Whether to shade where
y1 >= y2withposcolorand wherey1 < y2withnegcolor. For example, to shade positive values red and negative values blue, simply useax.fill_between(x, y, 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.