...

/

Scatter and KDE Plots

Scatter and KDE Plots

In this lesson, scatter plots and KDE plots are discussed.

Scatter plot

A scatter plot represents the values of data as points in a cartesian plane. It displays the data points based on the cartesian coordinates on an XY-plane. It is preferably used when a pair of dependent and independent variables need to be represented or visualized.

The same example from the regression plot lesson will be used to display a scatter plot.

Press + to interact
import numpy as np
import seaborn as sns
df = sns.load_dataset('tips')
sns1 = sns.scatterplot(x = 'total_bill', y = 'tip', data = df)

Just like in the ...