1. plot 그래프 형태: ax.plot(x좌표, y좌표) fig=plt.figure(figsize=(10,5), dpi=50) (ax1,ax2)=fig.subplots(1,2) ax1.plot([1,2,3],[1,2,4]) ax2.plot([1,2,3],[4,2,1]) fig=plt.figure(figsize=(10,5), dpi=50) (ax1,ax2)=fig.subplots(1,2) ##1 X=np.arange(0,100,10) Y=X**2 ax1.plot(X,Y,'ob') ##2 X1=np.arange(10) Y1=(X1-5)**2 ax2.plot(X1,Y1,'.--r') fig=plt.figure(figsize=(5,5), dpi=50) ax1=fig.subplots(1,1) ##1 X=np...