为什么geom_bar会更改订单?

时间:2016-05-18 23:12:58

标签: r ggplot2 geom-bar

我有一个数据,64行,3列如下。我想根据colors填写每个栏。

#Code     Route1   colors
# 0        0.25       a
# 1        0.08       b
# 10       0.02       b
# 11       0.11       b
# 100      0.04       b
# 101      0.04       b
# 110      0.06       b
# 111      0.03       b
# 1000     0.02       c
# ...       ...      ...

#Character  Numerical  Factor


ggplot(mydata, aes(x = Code, y=Route1, fill=colors)) +
  geom_bar(stat="identity", width=0.7)

enter image description here

条形的顺序不在Code列之后。

0 个答案:

没有答案