欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

plot

程序员文章站 2022-03-29 18:41:07
...
fig = plt.figure()
subFig1 = fig.add_subplot(121)
subFig1.scatter(X[:,0],X[:,1],c=y,s=30,cmap=plt.cm.Paired)
subFig1.set_title("Scatter")
plt.xlabel('x1')
plt.ylabel('x2')
subFig1 = fig.add_subplot(122)
subFig1.scatter(X[:,0],X[:,1],c=y,s=30,cmap=plt.cm.Paired)
subFig1.set_title("Scatter")
plt.xlabel('x1')
plt.ylabel('x3')
fig.show()