Середній рівень візуалізації даних із Seaborn
Chris Moffitt
Instructor
sns.regplot(data=df, x='temp',
y='total_rentals', marker='+')

residplot sns.residplot(data=df, x='temp', y='total_rentals')

order sns.regplot(data=df, x='temp',
y='total_rentals', order=2)

sns.residplot(data=df, x='temp',
y='total_rentals', order=2)

sns.regplot(data=df, x='mnth', y='total_rentals',
x_jitter=.1, order=2)

x_estimator корисний для підсвічування трендів sns.regplot(data=df, x='mnth', y='total_rentals',
x_estimator=np.mean, order=2)

x_bins дає змогу розбити дані на дискретні кошикиsns.regplot(data=df,x='temp',y='total_rentals',
x_bins=4)

Середній рівень візуалізації даних із Seaborn