seaborn.JointGrid.refline#
- JointGrid.refline(*, x=None, y=None, joint=True, marginal=True, color='.5', linestyle='--', **line_kws)#
在联合和/或边缘轴上添加参考线。
- 参数:
- x, y数字
绘制参考线的值。
- joint, marginal布尔值
是否在联合/边缘轴上添加参考线。
- color
matplotlib color
指定参考线的颜色。
- linestyle字符串
指定参考线的样式。
- line_kws键值映射
其他关键字参数将传递给
matplotlib.axes.Axes.axvline()
当x
不为 None 时,以及传递给matplotlib.axes.Axes.axhline()
当y
不为 None 时。
- 返回值:
JointGrid
实例返回
self
以方便方法链接。