I'm tryin to make a plot with pythons ggplot but the x and y aaxes are showing up in scientific notation
this is my code:
ggplot(dfMerge, aes(x='rent_price',y='sale_price', color='outlier',label='name')) +\
geom_text(hjust=0, vjust=0, size=20) +\
geom_point() +\
scale_y_continuous(labels="%.2f") +\
xlab("Rent Unit Price") +\
ylab("Sale Unit Price") +\
stat_smooth(color='blue')
How can i change the exponetial values on the axes to real numbers?
Thank you.