嗨,我想这里有这个情节。
Fruit <- c(rep("Apple",3),rep("Orange",25), rep("Peach",5) )
df <- data.frame(Fruit)
ggplot(df, aes(Fruit, ..count..)) + geom_bar(aes(fill = Fruit), position = "dodge")
然而我真正想要的是按降序排序,以便橘子首先遵循桃子。我可以生成一个频率表并创建一个具有级别排序的因子,但我想知道在特殊变量本身中是否还有这样做。
谢谢!