इंटरमीडिएट Data Visualization with 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 पैरामीटर से polynomial regression सपोर्ट करता है 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 से डेटा को discrete bins में बाँट सकते हैंsns.regplot(data=df,x='temp',y='total_rentals',
x_bins=4)

इंटरमीडिएट Data Visualization with Seaborn