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
andy
. Otherwise, it must acceptx
andy
vectors of data as the first two positional arguments, and it must plot on the “current” axes. Ifhue
was defined in the class constructor, the function must accepthue
as a parameter.- kwargs
Keyword argument are passed to the plotting function.
- Returns:
JointGrid
instanceReturns
self
for easy method chaining.