일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- Seaborn
- 검정수수료
- 응시료
- numpy
- 준비
- 시험 일정
- matplotlib
- separating data(데이터 분리하기)
- List Comprehension
- K 데이터 자격시험
- context manger1
- pythonML
- 빅데이터 분석기사
- teen learn
Archives
- Today
- Total
재원's 블로그
treemap graph(트리맵 그래프) 본문
최초 작성일 : 2021-11-19
categories: Matplotlib
오늘은 트리맵을 만들어 보았다.
import matplotlib.pyplot as plt #'matplotlib'의 'pyplot'모듈을 불러와서 사용.
import squarify #Squarify 패키지는 트리 맵 생성에 사용.
#설치가 되있지 않으면 'pip install squarify'를 쳐서 설치.
plt.style.use('default')
plt.rcParams['figure.figsize'] = (4, 4) #'rcParams'함수는 '그래프를 그리는 방식'을 설정해 줄수있다.
plt.rcParams['font.size'] = 12
sizes = [40, 30, 5, 25] #각 영역의 사이즈를 설정한다.
labels= ['A', 'B', 'C', 'D'] #각 영역에 '문자'를 출력해준다.
squarify.plot(sizes, 10, 10, label=labels)
#squarify.plot(sizes)와 같이
#리스트의 형태로 값을 입력하면 값의 비율에 맞는 넓이를 갖는 사각형 영역으로 표시.
plt.show()
참고 : https://jrc-park.tistory.com/274
https://data-newbie.tistory.com/731
'Matplotlib' 카테고리의 다른 글
bar graph1(막대그래프) (0) | 2023.01.21 |
---|---|
hitmap(히트맵) 그리기 (0) | 2023.01.21 |
hiatogram & colormap 그리기 (0) | 2023.01.21 |
Pie graph(원 그래프) (0) | 2023.01.21 |
Scatter plot(산점도) 그리기 (0) | 2023.01.20 |