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()



不同时期的数据会得出相同结果吗?
识别关系、差异与模式:
在收集数据前,假设检验需要:


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

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

设计实验
包括步骤:
Python 中的探索性数据分析