【发布时间】:2016-03-17 15:04:00
【问题描述】:
来自 dbv 的数据示例:
gender Sektion
1 m 5
2 m 5
3 w 3B
4 w 3B
5 w 3B
6 m 4
我有以下情节:
Sekplot <- ggplot(dbv,aes(x=Sektion,
fill=factor(gender),
stat="bin",
label = paste(round((..count..)/sum(..count..)*100), "%")))
Sekplot <- Sekplot + geom_bar(position="fill")
Sekplot <- Sekplot + scale_y_continuous(labels = percent)
Sekplot <- Sekplot + labs(title = "test")
Sekplot <- Sekplot + scale_fill_discrete(name="test", breaks=c("m", "w", "k.A."), labels=c("m", "w", "k.A."))
Sekplot <- Sekplot + geom_hline(aes(yintercept = ges, linetype = "test"), colour = "black", size = 0.75, show_guide = T)
Sekplot <- last_plot() + coord_flip()
Sekplot <- Sekplot + guides(colour = guide_legend(override.aes = list(linetype = 0 )),
fill = guide_legend(override.aes = list(linetype = 0 )),
shape = guide_legend(override.aes = list(linetype = 0 )),
linetype = guide_legend()) + theme(legend.title=element_blank())
Sekplot
输出:以错误的顺序绘制 y 轴
如何颠倒“Sektion”轴的顺序?我想在顶部有一个,在底部有 8 个。
我试过了,根据groupA$Date <- factor(groupA$Date, levels=rev(unique(groupA$Date))):
Sekplot <- last_plot() + coord_flip() + scale_x_reverse()
有几种口味,但找不到正确的方法。
【问题讨论】:
-
你需要像
scale_x_discrete(limits = rev(levels(dat$Sektion)))这样的东西——见this answer -
非常感谢,它就像一个魅力!我无法将此问题标记为已解决,因为答案在评论中。
-
我没有把它作为答案,因为我试图找到重复项。不过,我还没有找到一个真正好的匹配,所以将添加为答案。