본문 바로가기
국비교육

Python 13일차

by Diligejy 2019. 5. 17.

1.

ⓐ matplotlib : DataFrame을 바로 시각화 할 수 있는 장점

ⓑ seaborn : 

ⓒ 

ⓓ  

ⓔ 

 

2. matplotlib 용어

ⓐ Figure : 도화지를 그린 다음 plt함수를 subplots라는 속성을 이용해서 각 부분에 그래프를 그리는 방식

    plt.figure = plt.gcf() 명시호출 할 수 있으나 자동으로 호출된다.

    size를 조절 : fig.set_size_inches(h, v);

                     plt.figure(figsize=(h,w))

                     plt.rcParams['figure.figsize'] = (f, w)

ⓑ Axes : plot이 그려지는 공간

ⓒ Axis : plot의 축

ⓓ Legend : 범례

ⓔ Markers (scatter plot) : 산점도

 

3.

라인 플롯(line plot)

스캐터 플롯(scatter plot)

컨투어 플롯(contour plot)

서피스 플롯(surface plot)

바 차트(bar chart)

히스토그램(histogram)

 

 

'국비교육' 카테고리의 다른 글

Python 15일차  (0) 2019.05.21
Python 14일차  (0) 2019.05.20
Python 12일차  (0) 2019.05.16
Python 11일차  (0) 2019.05.15
Python 10일차 - 프로젝트 팁  (0) 2019.05.14

댓글