在seaborn中绘制散点图时出错

时间:2020-07-28 23:15:29

标签: python matplotlib seaborn

我有一个如下所示的熊猫数据框

enter image description here

我想用此代码绘制散点图

ax = sns.scatterplot(x="avg_PE_train",
                 y="rank",
                 hue="ARTCL_DESC",
                 palette="muted",
                 size = "sale_round",
                 data = top_seller_elast_pd)

但是它给了我这个错误信息

 AttributeError: 'decimal.Decimal' object has no attribute 'view'

怎么了。另外,我希望每个点的名称都显示在它旁边。我该怎么办?

0 个答案:

没有答案