vlines_extras¶
- vlines_extras(self, *args, **kwargs)[source]¶
Plot vertical lines with flexible positional arguments and optionally use different colors for “negative” and “positive” lines.
Important
This function wraps
vlines.- 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 draw lines 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 color lines greater than zero with
poscolorand lines less than zero withnegcolor.negcolor, poscolor (color-spec, optional) – Colors to use for the negative and positive lines. Ignored if
negposisFalse. Defaults arerc.negcolor='blue7'andrc.poscolor='red7'.color, colors (color-spec or list thereof, optional) – The line color(s).
linestyle, linestyles (linestyle-spec or list thereof, optional) – The line style(s).
lw, linewidth, linewidths (linewidth-spec or list thereof, optional) – The line width(s).
See also