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
- 파이썬
- 딥러닝
- Pandas
- 통계학
- Google Analytics
- MySQL
- 독후감
- 텐서플로
- 한빛미디어
- Tistory
- matplotlib
- tensorflow
- Linux
- 매틀랩
- MATLAB
- 서평단
- python visualization
- 서평
- Blog
- Python
- Ga
- 티스토리
- 시각화
- 블로그
- 리눅스
- 파이썬 시각화
- Visualization
Archives
- Today
- Total
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], '01' : b[i], '11' : c[i]}, ax = ax[i])
# 왼쪽 원
v[0].set_color('yellow')
# 우측 원
v[1].set_color('black')
# 배경색
ax[i].set_facecolor('black')
ax[i].set_axis_on()
# 정 사각형
ax[i].axis('square')
2. 결과
3. 참고
- How to Create and Customize Venn Diagrams in Python
- How do I customise the border and background color of my matplotlib-venn plot?
- Python에서 벤 다이어그램을 만들고 아름답게 하는 방법
- Change background colour of Venn diagram
- Matplotlib - 서브플롯 간의 간격 조절 : subplots_adjust, tight_layout(), constrained_layout
'ComputerLanguage_Program > PYTHON' 카테고리의 다른 글
[PYTHON] matplotlib 으로 원기옥(음식점 이름) 로고 그리기 (0) | 2022.10.26 |
---|---|
[PYTHON] 로그 스케일로 그림 그리기 (0) | 2022.07.23 |
[PYTHON] 음영이 포함된 라인차트 그리기 (0) | 2022.03.16 |
[python] 연령 별 연봉 그래프 그리기 (0) | 2022.02.24 |
[PYTHON] 동일한 알파벳에 동일한 색을 매핑하여 파이차트 그리기 (0) | 2022.01.07 |
Comments