Exploratory Data Analysis in 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()



Zouden data uit een andere periode dezelfde resultaten geven?
Relaties, verschillen en patronen detecteren:
Voor hypothesetoetsing heb je vóórdat je data verzamelt nodig:


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

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

Ontwerp ons experiment
Omvat stappen zoals:
Exploratory Data Analysis in Python