1. plot
- DataFrame의 plot을 이용하면 다양한 그래프를 그릴 수 있음.
2. 그래프 그리기
1) plot(x, y)
- kind : 그래프 종류 ex) line / bar / barh / hist / box / kde / density / area / pie / scatter / hexbin
- title : 그래프 제목
- linestyle : 선의 스타일 설정 ex)linestyle='dashed'
data_result["인구수"].plot(kind="bar", figsize=(10,10));
data_result["소계"].plot(kind="barh", grid=True, figsize=(10, 10));
3. 그래프 정렬하기
1) sort_values(ascending=True/False)
data_result["소계"].sort_values().plot(
kind="barh", grid=True, title="가장 CCTV가 많은 구", figsize=(10, 10));
data_result["소계"].sort_values(ascending=False).plot(
kind="barh", grid=True, title="가장 CCTV가 많은 구", figsize=(10, 10));
4. 참고할만한 사이트
'Python > Python 데이터분석' 카테고리의 다른 글
[Matplotlib] 데이터 시각화 (0) | 2022.05.27 |
---|---|
[Matplotlib] 산점도(Scatter Plot) 그리기 (0) | 2022.05.27 |
[Matplotlib] Matplotlib 이란? (0) | 2022.05.26 |
[Pandas] 데이터 병합 (0) | 2022.05.25 |
[Pandas] 함수 사용 (0) | 2022.05.25 |