JointGrid.
refline
(self, *, x=None, y=None, joint=True, marginal=True, color='.5', linestyle='--', **line_kws)¶Add a reference line(s) to joint and/or marginal axes.
Value(s) to draw the line(s) at.
Whether to add the reference line(s) to the joint/marginal axes.
matplotlib color
Specifies the color of the reference line(s).
Specifies the style of the reference line(s).
Other keyword arguments are passed to matplotlib.axes.Axes.axvline()
when x
is not None and matplotlib.axes.Axes.axhline()
when y
is not None.
JointGrid
instanceReturns self
for easy method chaining.