seaborn.JointGrid.plot#

JointGrid.plot(joint_func, marginal_func, **kwargs)#

Draw the plot by passing functions for joint and marginal axes.

This method passes the kwargs dictionary to both functions. If you need more control, call JointGrid.plot_joint() and JointGrid.plot_marginals() directly with specific parameters.

Parameters:
joint_func, marginal_funccallables

Functions to draw the bivariate and univariate plots. See methods referenced above for information about the required characteristics of these functions.

kwargs

Additional keyword arguments are passed to both functions.

Returns:
JointGrid instance

Returns self for easy method chaining.