반응형
Notice
Recent Posts
Recent Comments
Link
관리 메뉴

bro's coding

matplotlib.plot 본문

[IT]/python.matplotlib

matplotlib.plot

givemebro 2020. 3. 27. 00:13
반응형
plt.plot(iris[:50,:4].T,'r-',alpha=0.1)
plt.plot(iris[50:100,:4].T,'g-',alpha=0.1)
plt.plot(iris[100:150,:4].T,'b-',alpha=0.1)
pass​

plt.plot(iris)
plt.legend(iris_pd.columns)

 

반응형
Comments