这是我的剧情
ggplot( diamonds, aes(clarity , price) ) +
geom_bar(stat = "identity")
我无法将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")
这不是重复,所以请不要标记为重复,因为我已经尝试了所有其他选项。 如果我犯了任何错误或提出答案,请帮忙。
答案 0 :(得分:1)
我建议:
{{1}}