hlines_extras¶
- hlines_extras(self, *args, **kwargs)[source]¶
Plot horizontal lines with flexible positional arguments and optionally use different colors for “negative” and “positive” lines.
Important
This function wraps
hlines.- 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 draw lines between these points. Ifx1orx2are 2D, this function is called with each column. The default value forx2is0.stack, stacked (bool, optional) – Whether to “stack” successive columns of the
x1array. If this isTrueandx2was 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