How to display many graphs (plots) ? (repeat plot modules)

How to display many graphs (plots)

The easy way is to just repeat it!

like here.



from pylab import *

# Define x
x = range(0,100)
# Define y = 2*x*x
y = []
for i in range(len(x)):
    y.append(x[i]*x[i]*2)
# Define z = 4*x
z = []
for i in range(len(x)):
    z.append(x[i]*4)

# Repeat!
figure()
plot(x,y)
figure()
plot(x,z)
show()

The output!



Thanks!

Have Fun!






댓글

이 블로그의 인기 게시물

미국 포닥, 한국으로 돌아가는 이유? (Why do postdoc go back to Korea?)

외국인 (한국인) 미국 집 구입. 영주권, 시민권 필요없다.

미국 포닥 - 비지팅 포닥 VS 풀펀딩 포닥 (Visiting Scholar VS Postdoctoral Fellow)