seaborn.JointGrid.plot_joint#

JointGrid.plot_joint(func, **kwargs)#

Draw a bivariate plot on the joint axes of the grid.

Parameters:
funcplotting callable

If a seaborn function, it should accept x and y. Otherwise, it must accept x and y vectors of data as the first two positional arguments, and it must plot on the “current” axes. If hue was defined in the class constructor, the function must accept hue as a parameter.

kwargs

Keyword argument are passed to the plotting function.

Returns:
JointGrid instance

Returns self for easy method chaining.