如何在散点图中绘制以下数据?

时间:2019-10-15 12:45:40

标签: python scatter-plot

enter image description here

我已经在python中尝试了以下代码:

y = df.drop(["userid"], axis=1)
plt.figure(figsize=(20, 20))
plt.scatter(df['userid'], y)
plt.xlabel('userid')
plt.ylabel('privilages')

但是我收到一条错误消息,提示“ x和y的大小必须相同”

0 个答案:

没有答案