fig = plt.figure(figsize=(8,8)) # figure size (optional) plt.subplot(a,b,c) # subplot 1 plt.plot(data_1) # data 1 plt.subplot(a,b,c) # subplot 2 ...
確定! 回上一頁