我有5个类和一些要绘制的功能。这是代码
x_pts = X_test.iloc[:,col_1]
y_pts = X_test.iloc[:,col_2]
color_seq = y_test
plt.scatter(x_pts, y_pts, c=color_seq, cmap='viridis')
plt.xlabel(X_test.columns[col_1])
plt.ylabel(X_test.columns[col_2])
plt.show()
这将导致下图
我现在想要每种颜色都有图例(例如,黄色='class a',蓝色='class b',...) 我能找到的唯一文档是人们以不同的方式绘制每种颜色,这在我的特定情况下很难。没有显示图例like the example here
的简单方法