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
- SQL
- Visualization
- 리눅스
- 월간결산
- 독후감
- 한빛미디어
- 서평단
- 블로그
- 한빛미디어서평단
- 티스토리
- Pandas
- Google Analytics
- Python
- 파이썬
- MATLAB
- 서평
- tensorflow
- matplotlib
- 시각화
- Ga
- MySQL
- 파이썬 시각화
- 통계학
- Linux
- Blog
- 텐서플로
- 딥러닝
- python visualization
- 매틀랩
- Tistory
Archives
- Today
- Total
목록venn2 (1)
pbj0812의 코딩 일기
[PYTHON] venn2_circles 로 달 그리기
0. 목표 - venn2_cirles 로 달 그리기 1. 실습 1) 라이브러리 호출 import matplotlib.pyplot as plt from matplotlib_venn import venn2, venn2_circles import numpy as np 2) 코드 생성 # 데이터 생성 a = np.linspace(1, 0, 5) b = [0, 1, 1, 1, 1] c = [0, 1, 1, 1, 1] # 서브 플랏 제작 fig, ax = plt.subplots(1, 5, figsize = [20, 15]) # 간격 조정 plt.subplots_adjust(wspace = 0) # 그림 그리기 for i in range(5): v = venn2_circles(subsets={'10' : a[i], ..
ComputerLanguage_Program/PYTHON
2022. 7. 22. 00:31