以下是我的尝试
plt.scatter(PC1_plt,PC2_plt, c = colors)
plot_start(PC1[0],PC2[0],colors= "g")
plot_end(PC1[-1],PC2[-1], colors= "r")
plt.xlabel = ('PC1')
plt.ylabel = ('PC2')
plt.title = ('PC1-PC2 plane space trajectories')
plt.show()
但是两个轴上都没有 x、y 标签。我想知道我做错了什么?由于一般绘图(非散点图)仍然可以正常工作。
因为
xlabel
、ylabel
和 title
是方法。删除=
。
尝试这样:
plt.scatter(PC1_plt,PC2_plt, c = colors)
plot_start(PC1[0],PC2[0],colors= "g")
plot_end(PC1[-1],PC2[-1], colors= "r")
plt.xlabel('PC1')
plt.ylabel('PC2')
plt.title('PC1-PC2 plane space trajectories')
plt.show()