Îmbunătățirea vizualizărilor de date în Python
Nick Strayer
Instructor
Valorile sunt în general mai mari?
Distribuția valorilor este mai largă? Mai îngustă?
Esențial pentru reprezentarea datelor



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)

# Enable rugplot
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)")

Îmbunătățirea vizualizărilor de date în Python