我有一个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 =“,”),但这只适用于轴标记。
如果你能帮助我,那将是太棒了:)。