在ggplot python上将科学记数法转换为实数

时间:2017-09-01 21:03:18

标签: python pandas ggplot2 axis scientific-notation

我试图用蟒蛇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') 

这是我得到的情节: enter image description here

如何将轴上的指数值更改为实数?

谢谢。

0 个答案:

没有答案