Jointplots and regression
Since the previous plot does not show a relationship between humidity and rental amounts, we can
look at another variable that we reviewed earlier. Specifically, the relationship between temp
and total_rentals.
Bu egzersiz, kursun bir parçasıdır
Intermediate Data Visualization with Seaborn
Uygulamalı etkileşimli egzersiz
Bu egzersizi bu örnek kodu tamamlayarak deneyin.
# Plot temp vs. total_rentals as a regression plot
sns.____(x="temp",
y="____",
kind='____',
data=df,
order=____,
xlim=(0, 1))
plt.show()
plt.clf()