I have two problems.
First I want to change the blue of 'column_B' to light gray (code: #e9e9e9
).
Second, I want to delete the Price section of the label that appears due to the size
option.
sns.scatterplot(x = "Column_A",
y = "Column_C",
hue = 'Column_B',
size = 'price',
sizes=(50, 500),
data = df)
I want this result...
image!!