반응형
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
- bccard
- web 용어
- pycharm
- 웹 용어
- 대이터
- html
- web
- discrete_scatter
- broscoding
- web 개발
- postorder
- CES 2O21 참가
- CES 2O21 참여
- mglearn
- KNeighborsClassifier
- 머신러닝
- 결합전문기관
- 재귀함수
- C언어
- Keras
- java역사
- 자료구조
- cudnn
- inorder
- paragraph
- classification
- vscode
- 데이터전문기관
- web 사진
- tensorflow
Archives
- Today
- Total
bro's coding
matplotlib.contourf(등고선 그리기 2) 본문
반응형
import numpy as np
import matplotlib.pyplot as plt
x=np.arange(-1,1,0.1)
y=np.arange(-1,1,0.1)
X,Y=np.meshgrid(x,y)
Z=np.exp(-(X**2+Y**2))
CS=plt.contourf(X,Y,Z,levels=np.arange(-1,1,0.05),alpha=0.5,cmap='seismic')
plt.colorbar()
CS=plt.contour(X,Y,Z,levels=np.arange(-1,1,0.05))
plt.clabel(CS,inline=2,fontsize=10)
https://broscoding.tistory.com/81
반응형
'[IT] > python.matplotlib' 카테고리의 다른 글
matplotlib.savefig(그래프 저장하기) (0) | 2020.04.03 |
---|---|
matplot.annotate(화살표, 그리드, 텍스트 그리기) (0) | 2020.04.03 |
matplotlib.subplot(그래프 여러개 그리기 2) (0) | 2020.04.03 |
matplotlib.subplot(그래프 여러개 그리기 1) (0) | 2020.04.03 |
matplotlib.contour(등고선 그리기 1) (0) | 2020.04.02 |
matplotlib.브로드캐스팅 이용 red*2 (0) | 2020.03.30 |
matplotlib.흑백이미지 만들기 (0) | 2020.03.30 |
matplotlib.subplot (0) | 2020.03.27 |
Comments