在绘制条形图时,我在Y轴上的数字自动转换为指数形式。我怎么能避免这种情况

时间:2018-04-17 15:20:14

标签: r ggplot2

这是我的剧情

ggplot( diamonds, aes(clarity , price) ) +
      geom_bar(stat = "identity")

我将此作为输出 enter image description here

我无法将Y轴指数显示转换为常规数

Do not want scientific notation on plot axis

我也尝试过scipen和format函数

ggplot( diamonds, aes(clarity , b) , options(scipen=10)) +
  geom_bar(stat = "identity")

b <- diamonds$price
formatC(b , format = "d")

a <- ggplot( diamonds, aes(clarity , b)) +
  geom_bar(stat = "identity")

这不是重复,所以请不要标记为重复,因为我已经尝试了所有其他选项。 如果我犯了任何错误或提出答案,请帮忙。

1 个答案:

答案 0 :(得分:1)

我建议:

{{1}}