0

我使用以下代码将 y 轴更改为百分比:

require(ggplot2)
require(scales)

p <- ggplot(mydataf, aes(x = foo)) +  
geom_bar(aes(y = (..count..)/sum(..count..))) + 
scale_y_continuous(labels = percent_format())

这有帮助,但现在标签是:(count)/sum(count)
,我希望它是:百分比

有什么建议吗?谢谢。

4

1 回答 1

1
library(scales)

p + scale_y_continuous(labels=percent)

那应该这样做。

于 2015-07-15T20:05:11.287 回答