반응형
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 |
Tags
- vscode
- mglearn
- web 용어
- cudnn
- 웹 용어
- java역사
- paragraph
- broscoding
- 결합전문기관
- classification
- inorder
- tensorflow
- 자료구조
- 대이터
- pycharm
- Keras
- C언어
- web
- CES 2O21 참가
- bccard
- KNeighborsClassifier
- 재귀함수
- web 개발
- 데이터전문기관
- CES 2O21 참여
- discrete_scatter
- 머신러닝
- web 사진
- postorder
- html
Archives
- Today
- Total
bro's coding
matplotlib.subplot(그래프 여러개 그리기 2) 본문
반응형
import numpy as np
import matplotlib.pyplot as plt
plt.subplot(2,2,1)
plt.plot([1,2,3,4])
plt.subplot(2,2,2)
plt.scatter(np.random.randn(100),np.random.randn(100))
plt.subplot(2,2,3)
plt.bar(range(10),range(10))
plt.subplot(2,2,4)
plt.imshow(np.random.randn(64,64))
matplotlib.subplot(그래프 여러개 그리기 1)
axes[0,0].plot([1,2,3,4]) import numpy as np import matplotlib.pyplot as plt axes[0,0].plot([1,2,3,4]) axes[0,1].scatter(np.random.randn(100),np.random.randn(100)) axes[1,0].bar(range(10),range(10..
broscoding.tistory.com
반응형
'[IT] > python.matplotlib' 카테고리의 다른 글
matplotlib.font_manager, rc(한글 사용하기) (0) | 2020.04.06 |
---|---|
matplotlib.axis(축 다루기) (0) | 2020.04.03 |
matplotlib.savefig(그래프 저장하기) (0) | 2020.04.03 |
matplot.annotate(화살표, 그리드, 텍스트 그리기) (0) | 2020.04.03 |
matplotlib.subplot(그래프 여러개 그리기 1) (0) | 2020.04.03 |
matplotlib.contourf(등고선 그리기 2) (0) | 2020.04.03 |
matplotlib.contour(등고선 그리기 1) (0) | 2020.04.02 |
matplotlib.브로드캐스팅 이용 red*2 (0) | 2020.03.30 |
Comments