Exploratory Data Analysis i Python
George Boorman
Curriculum Manager, DataCamp

sns.heatmap(planes.corr(numeric_only=True), annot=True)
plt.show()

sns.scatterplot(data=planes, x="Duration", y="Price", hue="Total_Stops")
plt.show()



Skulle data från en annan tidsperiod ge samma resultat?
För att hitta samband, skillnader och mönster:
Hypotestestning kräver, innan datainsamling:


sns.barplot(data=planes, x="Airline", y="Duration")
plt.show()

sns.barplot(data=planes, x="Destination", y="Price")
plt.show()

Utforma vårt experiment
Omfattar steg som:
Exploratory Data Analysis i Python