我试图用蟒蛇ggplot制作一个情节,但x和y aaxes以科学记数法出现
这是我的代码:
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')
如何将轴上的指数值更改为实数?
谢谢。