我使用了article之后的分面,除了使用某个数据子集删除某些行。
# create a dataset
specie=c(rep("sorgho" , 3) , rep("poacee" , 3) , rep("banana" , 3) , rep("triticum" , 3) )
condition=rep(c("normal" , "stress" , "Nitrogen") , 4)
value=abs(rnorm(12 , 0 , 15))
data=data.frame(specie,condition,value)
# remove some rows
data=data[c(1:2,5:6,7,9,11:12),]
# Grouped
ggplot(data, aes(fill=condition, y=value, x=specie)) +
geom_bar(position="dodge", stat="identity")
# Faceting
ggplot(data, aes(y=value, x=specie, color=specie, fill=specie)) +
geom_bar( stat="identity") +
facet_wrap(~condition)
这给出了如下预期的图。我需要从下面的每个图中删除空标签 - 例如,sorgho
从第一个,poacee
和triticum
从第二个,依此类推。
答案 0 :(得分:5)
您需要将scales
参数添加到facet_wrap()
。试试
# Faceting
ggplot(data, aes(y=value, x=specie, color=specie, fill=specie)) +
geom_bar( stat="identity") +
facet_wrap(~condition, scales = "free")