散点图无法显示x、y标签和标题[重复]

问题描述 投票:0回答:1

我试图绘制散点图,但我的图表上没有 x,y 标签。

以下是我的尝试

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 标签。我想知道我做错了什么?由于一般绘图(非散点图)仍然可以正常工作。

python matplotlib scatter-plot
1个回答
-1
投票

因为

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()
© www.soinside.com 2019 - 2024. All rights reserved.