如何将x轴分成ggplot中的多个图?

时间:2014-07-24 12:46:30

标签: r ggplot2

我有以下数据集:

df <- as.data.frame(cbind(Position = c(1,2,3,4,5,6,7,8,9,10), 
    Value = c(11.31, 10.39, 9.50, 6.61, 5.41, 
    3.88, 3.81, 1.25, 0.70,10.41)))

我想将其绘制为位置值为1-3,4-6,7-9,10的条形图,在单独的图中,即彼此下方的4个单独的图。在ggplot中有一种简单的方法吗?

编辑:我想在没有空位的情况下实现这一目标。

干杯, 约瑟夫

3 个答案:

答案 0 :(得分:8)

最简单的方法是使用facet_grid()

Faceted plot

ggplot(df, aes(x=Position, y=Value))+
    geom_bar(stat='identity')+
    facet_grid(~group,scales='free')

否则,为了获得更多控制权,您可以尝试创建个别情节&amp;使用gridExtra包来组合它们。 Combined Plot

#Data
enter df <- as.data.frame(cbind(Position = c(1,2,3,4,5,6,7,8,9,10), 
                      Value = c(11.31, 10.39, 9.50, 6.61, 5.41, 
                                3.88, 3.81, 1.25, 0.70,10.41)))
#Grouping
df$group<-cut(df$Position,breaks=c(0,3,6,9,100),c('0-3','4-6','7-9','10'))

#Creating Individual Plots
p1=ggplot(subset(df,df$group=='0-3'), aes(x=Position, y=Value))+
    geom_bar(stat='identity')+
    ggtitle('0-3')

p2=ggplot(subset(df,df$group=='4-6'), aes(x=Position, y=Value))+
  geom_bar(stat='identity')+
  ggtitle('4-6')

p3=ggplot(subset(df,df$group=='7-9'), aes(x=Position, y=Value))+
  geom_bar(stat='identity')+
  ggtitle('7-9')

p4=ggplot(subset(df,df$group=='10'), aes(x=factor(Position), y=Value,width=Value/10))+
  geom_bar(stat='identity',width=0.7)+
  ggtitle('10')+
  xlab(label='Position')

grid.arrange(p1,p2,p3,p4,ncol=2,nrow=2,main='Plot')

答案 1 :(得分:2)

这是你正在寻找的吗?

df <- transform(df, Position=as.factor(Position),
    group=as.factor(findInterval(Position, c(1, 4, 7, 10))))

ggplot(df, aes(x=Position, y=Value, fill=Position)) + 
    geom_bar(stat='identity') + 
    facet_grid(group ~ .)

enter image description here

答案 2 :(得分:2)

您可能希望使用包CAR的RECODE功能来定义自定义间隔,如下所示:

require(car)
require(ggplot2)
df['series']<-recode(df$Position, "1:3='1-3';4:6='4-6';7:9='7-9';10='10'")
ggplot(df, aes(x=Position, y=Value))+geom_bar(stat='identity')+facet_grid(~series)

enter image description here