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()
推荐阅读
-
python中plot实现即时数据动态显示方法
-
解决python中使用plot画图,图不显示的问题
-
修改python plot折线图的坐标轴刻度方法
-
解决Python pandas plot输出图形中显示中文乱码问题
-
matlab 和octave笔画之如何画图表 plot()函数的简单介绍
-
matlab画三维图像(plot3,mesh,surf)
-
MATLAB绘图之plot3
-
【MATLAB】三维曲线(plot3)
-
matplotlib.pyplot.plot()参数详解
-
matplotlib 之 pyplot 中常用方法的源码调用过程(plt.plot、plt.scatter、plt.hist、plt.bar、plt.show、plt.savefig)