반응형
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
- KNeighborsClassifier
- web
- CES 2O21 참여
- CES 2O21 참가
- 데이터전문기관
- inorder
- broscoding
- web 용어
- pycharm
- discrete_scatter
- postorder
- vscode
- web 개발
- mglearn
- C언어
- cudnn
- 머신러닝
- html
- Keras
- paragraph
- 웹 용어
- 자료구조
- 결합전문기관
- classification
- bccard
- 재귀함수
- 대이터
- java역사
- tensorflow
- web 사진
Archives
- Today
- Total
bro's coding
matplotlib.animation 본문
반응형
import numpy as np
import matplotlib.pyplot as plt
from matplotlib import animation
fig, ax=plt.subplots()
ax.set_xlim((0,2))
ax.set_ylim((-2,2))
ax.grid(True)
line,=ax.plot([],[],lw=2)
def init():
line.set_data(([],[]))
return (line,)
def animate(t):
x=np.linspace(0,2,1000)
y=np.sin(2*np.pi*(x-0.01*t))
line.set_data(x,y)
return (line,)
ani=animation.FuncAnimation(fig=fig,func=animate,init_func=init,interval=20,blit=True)
plt.show()
(움직이는 중임)
반응형
'[IT] > python.matplotlib' 카테고리의 다른 글
finance (0) | 2020.06.09 |
---|---|
matplotlib.animation_2 (0) | 2020.06.08 |
matplotlib.dist_table (0) | 2020.04.07 |
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(그래프 여러개 그리기 2) (0) | 2020.04.03 |
Comments