Which Seaborn function would you use to visualize a bivariate distribution of two variables?

  • sns.barplot()
  • sns.distplot()
  • sns.jointplot()
  • sns.plot()
To visualize a bivariate distribution of two variables in Seaborn, you should use the sns.jointplot() function. It creates a scatter plot with marginal histograms and can also display a regression line or a kernel density estimate.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *