Wizualizacja danych z Seaborn – poziom średniozaawansowany
Chris Moffitt
Instructor
sns.regplot(data=df, x='temp',
y='total_rentals', marker='+')

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

ordersns.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 może pomóc w uwidocznieniu trendówsns.regplot(data=df, x='mnth', y='total_rentals',
x_estimator=np.mean, order=2)

x_bins służy do podziału danych na dyskretne przedziałysns.regplot(data=df,x='temp',y='total_rentals',
x_bins=4)

Wizualizacja danych z Seaborn – poziom średniozaawansowany