라벨이 multiple plots인 게시물 표시

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!