Drawing Multiple Plots in One Figure using Python

One of simple way of drawing Multiple Plots in One Figure using Python is like this,

if x and y functions were given,


--------------------------------------------------
from pylab import *

plotcycle = range(1,10)

for i in plotcycle:
     xvalues = xfunction(i)
     yvalues = yfunction(i)

     plot(xvalues, yvalues, label='%d function' % i)


show()
--------------------------------------------------

Below graph is an example, (Actually, my working graph for research now)




Thanks!

Have Fun!




댓글

이 블로그의 인기 게시물

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

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

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