ggplot2 - 用逗号代替点的结果百分比

时间:2017-06-12 14:36:25

标签: r ggplot2

我有一个ggplot2的问题,我尝试用逗号而不是点在我的条形图中获得百分比结果,因为我来自德国,我们使用点和逗号相反。这个结果应该显示在条形图中。

我会告诉你我现在所有的编程

    ggplot(dataframe[!is.na(dataframe$variable), ], aes(x=variable,  group=1)) +
    geom_bar(aes(y = ..prop.., fill = factor(..x..)), stat="count") +
    geom_text(aes( label = scales::percent(..prop..),
               y= ..prop.. ), stat= "count")

我还找到了选项格式(x,decimal.mark =“,”),但这只适用于轴标记。

如果你能帮助我,那将是太棒了:)。

0 个答案:

没有答案