ggplot2, geom_bar, 闪避, 条的顺序
ggplot2, geom_bar, dodge, order of bars
我想订购闪避条 geom_bar
。你知道怎么处理吗?
我的代码:
ttt <- data.frame(typ=rep(c("main", "boks", "cuk"), 2),
klaster=rep(c("1", "2"), 3),
ile=c(5, 4, 6, 1, 8, 7))
ggplot()+
geom_bar(data=ttt, aes(x=klaster, y=ile, fill=typ),
stat="identity", color="black", position="dodge")
为了更好地理解问题的示例图:
我有:
我想要的:
一个选项是创建一个新变量来表示条形图在每个组中的顺序,并将此变量添加为绘图中的 group
参数。
有很多方法可以完成创建变量的任务,这里是使用 dplyr 中的函数的一种方法。新变量基于 ile
在每个 klaster
组中按降序排列。如果你在任何组中有领带,你会想弄清楚在这种情况下你想做什么(在给定的领带中条形图应该以什么顺序排列?)。您可能希望将 rank
中的 ties.method
参数设置为远离默认值,可能是 "first"
或 "random"
.
library(dplyr)
ttt = ttt %>%
group_by(klaster) %>%
mutate(position = rank(-ile))
ttt
Source: local data frame [6 x 5]
Groups: klaster [2]
typ klaster ile rank position
(fctr) (fctr) (dbl) (dbl) (dbl)
1 main 1 5 3 3
2 boks 2 4 2 2
3 cuk 1 6 2 2
4 main 2 1 3 3
5 boks 1 8 1 1
6 cuk 2 7 1 1
现在只需将 group = position
添加到您的剧情代码中即可。
ggplot() +
geom_bar(data=ttt, aes(x=klaster, y=ile, fill=typ, group = position),
stat="identity", color="black", position="dodge")
我想订购闪避条 geom_bar
。你知道怎么处理吗?
我的代码:
ttt <- data.frame(typ=rep(c("main", "boks", "cuk"), 2),
klaster=rep(c("1", "2"), 3),
ile=c(5, 4, 6, 1, 8, 7))
ggplot()+
geom_bar(data=ttt, aes(x=klaster, y=ile, fill=typ),
stat="identity", color="black", position="dodge")
为了更好地理解问题的示例图:
我有:
我想要的:
一个选项是创建一个新变量来表示条形图在每个组中的顺序,并将此变量添加为绘图中的 group
参数。
有很多方法可以完成创建变量的任务,这里是使用 dplyr 中的函数的一种方法。新变量基于 ile
在每个 klaster
组中按降序排列。如果你在任何组中有领带,你会想弄清楚在这种情况下你想做什么(在给定的领带中条形图应该以什么顺序排列?)。您可能希望将 rank
中的 ties.method
参数设置为远离默认值,可能是 "first"
或 "random"
.
library(dplyr)
ttt = ttt %>%
group_by(klaster) %>%
mutate(position = rank(-ile))
ttt
Source: local data frame [6 x 5]
Groups: klaster [2]
typ klaster ile rank position
(fctr) (fctr) (dbl) (dbl) (dbl)
1 main 1 5 3 3
2 boks 2 4 2 2
3 cuk 1 6 2 2
4 main 2 1 3 3
5 boks 1 8 1 1
6 cuk 2 7 1 1
现在只需将 group = position
添加到您的剧情代码中即可。
ggplot() +
geom_bar(data=ttt, aes(x=klaster, y=ile, fill=typ, group = position),
stat="identity", color="black", position="dodge")