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
kwargsdictionary to both functions. If you need more control, callJointGrid.plot_joint()andJointGrid.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:
JointGridinstanceReturns
selffor easy method chaining.