일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- cnn
- Ai
- Python
- ViT
- 알고리즘
- transformer
- object detection
- 코드구현
- Paper Review
- 코딩테스트
- Semantic Segmentation
- opencv
- pytorch
- Convolution
- 인공지능
- programmers
- 논문 리뷰
- Computer Vision
- 파이썬
- 논문리뷰
- Segmentation
- 논문
- Self-supervised
- optimizer
- 프로그래머스
- 파이토치
- 머신러닝
- 딥러닝
- 옵티마이저
- 논문구현
Archives
- Today
- Total
Attention please
원형차트(pie) 그리기 - matplotlib 본문
이번에는 pie 차트를 그려보도록 하겠습니다.
pie차트를 그리기 위해 필요한 함수는
"pie" 입니다.
간단하게 파이차트를 그려보도록 하겠습니다.
fig = plt.figure(figsize = (5,5), dpi = 100)
ax = fig.subplots()
data = np.arange(1,6)
_=ax.pie(data)
normalize
pie 함수에는 normalize라는 파라미터가 존재합니다.
디폴트값은 True이며,
만약 False로 하게 되면 파이차트에 남는 공간이 생기더라도
그대로 출력됩니다.
fig = plt.figure(figsize = (5,5), dpi = 100)
ax = fig.subplots()
data = np.arange(1,6) * 0.05
_=ax.pie(data, normalize = False)
'데이터 시각화 > matplotlib' 카테고리의 다른 글
상자그림 그리기(boxplot) - matplotlib (0) | 2022.10.08 |
---|---|
히스토그램 그리기(hist) - matplotlib (0) | 2022.10.08 |
막대그래프 그리기(bar, barh) - matplotlib (0) | 2022.10.08 |
scatter 함수 사용하기 - matplotlib (0) | 2022.10.07 |
데이터셋 시각화 - matplotlib (0) | 2022.10.07 |
Comments