Python'da Veri Görselleştirmelerini İyileştirme
Nick Strayer
Instructor
Değerler genel olarak daha mı yüksek?
Dağılım daha geniş mi? Daha dar mı?
Verinizi sunmak için kritik



pollution_nov = pollution[pollution.month == 10]sns.kdeplot(pollution_nov[pollution_nov.city == 'Denver'].O3, color = 'red') sns.kdeplot(pollution_nov[pollution_nov.city != 'Denver'].O3)

# Rugplot'u etkinleştir
sns.kdeplot(pollution_nov[pollution_nov.city == 'Denver'].O3, color='red')
sns.rugplot(pollution_nov[pollution_nov.city == 'Denver'].O3, color='red')
sns.kdeplot(pollution_nov[pollution_nov.city != 'Denver'].O3)



pollution_nov = pollution[pollution.month == 10]
sns.swarmplot(y="city", x="O3", data=pollution_nov, size=4)
plt.xlabel("Ozone (O3)")

Python'da Veri Görselleştirmelerini İyileştirme