我使用以下代码将 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)
,我希望它是:百分比
有什么建议吗?谢谢。
我使用以下代码将 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)
,我希望它是:百分比
有什么建议吗?谢谢。