시간대별로 주중과 주말 인구가 조금씩 차이납니다.
마지막 과정 6도 작성해 봅시다. 주중과 주말 리스트를 각각 꺾은선 그래프로 그리고, 주중과 주말을 구분하기 위해 범례를 추가하고 그래프 색상도 다르게 합니다.
import matplotlib.pyplot as plt
plt.rc('font', family='Malgun Gothic')
plt.title(dong_name + ' 주중/주말 시간대별 평균인구')
plt.plot(weekday, color='indigo', label='주중')
plt.plot(weekend, color='orangered', label='주말')
plt.legend()
plt.xlabel('시간대')
plt.ylabel('평균인구수')
plt.xticks(range(24), range(24))
plt.show()
실행결과
주중과 주말 인구의 꺾은선 그래프가 겹쳐 그려집니다.