在geom_bar之后重新排序y轴,并在ggplot中填充位置

时间:2016-04-29 12:11:42

标签: r ggplot2 geom-bar

我一直在ggplot中生成一个条形图但是无法反转y轴的输出顺序。

我的代码:

ggplot(data, aes(x=time_, fill= factor(class))) +
geom_bar(position = "fill") + scale_y_reverse()

尝试使用scale_y_reverse时,它会反转顺序,但每个总数的百分比都会被破坏。

我已经找到了解决方案,但是找不到任何解决方案。

我在这里错过了什么吗?

有:

enter image description here

想要:

enter image description here

0 个答案:

没有答案