라벨이 many plot인 게시물 표시

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!