Tech & TIL

Bar charts & Heatmaps 본문

Data Science

Bar charts & Heatmaps

Jadon Yang 2022. 5. 9. 16:42

Ref: Kaggle Data Visualization Course

Data

Index: Month
Columns: Airline Code

Bar chart

# Set the width and height of the figure
plt.figure(figsize=(10,6))

# Add title
plt.title("Average Arrival Delay for Spirit Airlines Flights, by Month")

# Bar chart showing average arrival delay for Spirit Airlines flights by month
sns.barplot(x=flight_data.index, y=flight_data['NK'])

# Add label for vertical axis
plt.ylabel("Arrival delay (in minutes)")

Heatmap

# Set the width and height of the figure
plt.figure(figsize=(14,7))

# Add title
plt.title("Average Arrival Delay for Each Airline, by Month")

# Heatmap showing average arrival delay for each airline by month
sns.heatmap(data=flight_data, annot=True)

# Add label for horizontal axis
plt.xlabel("Airline")

히트맵을 보면 상대적으로 연말에 (9-11월쯤) 어두운 것을 확인할 수 있다. 이것을 통해 평균적으로 항공사들은 연말에 스케줄을 잘 지킨다는 것을 알 수 있다. (i.e. 항공편이 Delay 되지 않는다.)

'Data Science' 카테고리의 다른 글

Line Charts  (0) 2022.05.09
Scatter Plot  (0) 2022.05.09
F1 score란?  (1) 2022.05.09
Comments