I have a pandas dataframe as shown below
I want to draw a scatterplot with this code
ax = sns.scatterplot(x="avg_PE_train",
y="rank",
hue="ARTCL_DESC",
palette="muted",
size = "sale_round",
data = top_seller_elast_pd)
but it gives me this error message
AttributeError: 'decimal.Decimal' object has no attribute 'view'
What's wrong. Also, I want the name of each point to be shown besides it. How can I do that?