次のコードを使用して、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)
であり、パーセンテージにしたい
なにか提案を?ありがとう。