Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 리눅스
- python visualization
- 티스토리
- Ga
- 텐서플로
- 서평
- Visualization
- Pandas
- 딥러닝
- Tistory
- 시각화
- 한빛미디어
- 서평단
- MATLAB
- matplotlib
- 파이썬 시각화
- Linux
- 블로그
- 통계학
- SQL
- 매틀랩
- 독후감
- Google Analytics
- 한빛미디어서평단
- Python
- 월간결산
- tensorflow
- MySQL
- Blog
- 파이썬
Archives
- Today
- Total
pbj0812의 코딩 일기
[PYTHON] plotly를 이용한 dengrogram 그리기 본문
0. 목표
- plotly를 이용한 dengrogram 작성
1. 실습
1) 설치
pip install plotly
2) library 호출
import plotly.figure_factory as ff
import numpy as np
3) 데이터 생성
- 단순 list로 데이터 생성시 에러 발생
- 최소 2개 이상의 데이터가 필요
- [1, 2, 3]의 형태가 아닌 [[1], [2], [3]]의 형태로 들어가야 함
np.random.seed(1)
X = np.random.rand(15, 12)
4) 덴드로그램 생성
- 그림이 아닌 상호작용이 가능한 gui 생성
fig = ff.create_dendrogram(a)
fig.update_layout(width=800, height=500)
fig.show()
5) 색상 가중치 조절
- 1.5 이하는 같은 색
fig = ff.create_dendrogram(X, color_threshold=1.5)
fig.update_layout(width=800, height=500)
fig.show()
6) 라벨링 + 그림 회전
names = ['Jack', 'Oxana', 'John', 'Chelsea', 'Mark', 'Alice', 'Charlie', 'Rob', 'Lisa', 'Lily', 'a', 'b', 'c', 'd', 'e']
fig = ff.create_dendrogram(X, orientation='left', labels=names)
fig.update_layout(width=800, height=800)
fig.show()
2. 참고
'ComputerLanguage_Program > PYTHON' 카테고리의 다른 글
[PYTHON] python으로 3차원 그림 그리기 (0) | 2020.10.06 |
---|---|
[PYTHON] PyQt를 활용한 radio button + push button 어플 (0) | 2020.09.24 |
[PYTHON] dataprep을 통한 EDA (0) | 2020.08.23 |
[PYTHON] pandas_profiling을 통한 EDA (0) | 2020.08.22 |
[PYTHON] handcalcs 라이브러리를 통한 수식 작성 (0) | 2020.08.21 |
Comments