Articles → SEABORN → Jointplot Function In Seaborn
Jointplot Function In Seaborn
Purpose
Code
import seaborn as sns
import matplotlib.pyplot as plt
data = sns.load_dataset('penguins')
sns.jointplot(x='bill_length_mm', y='bill_depth_mm', data=data)
Output
Kind Attribute
import seaborn as sns
import matplotlib.pyplot as plt
data = sns.load_dataset('penguins')
sns.jointplot(x='bill_length_mm', y='bill_depth_mm', data=data, kind="hex")