Exploratory Data Analysis in Python
George Boorman
Curriculum Manager, DataCamp
sns.heatmap(planes.corr(), annot=True)
plt.show()
sns.scatterplot(data=planes, x="Duration", y="Price", hue="Total_Stops")
plt.show()
Would data from a different time give the same results?
Detecting relationships, differences, and patterns:
Hypothesis testing requires, prior to data collection:
sns.barplot(data=planes, x="Airline", y="Duration")
plt.show()
sns.barplot(data=planes, x="Destination", y="Price")
plt.show()
Design our experiment
Involves steps such as:
Exploratory Data Analysis in Python