การวิเคราะห์ข้อมูลเชิงสำรวจด้วย 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