在ggplot2中按两列分组

时间:2012-04-01 22:38:29

标签: r ggplot2

是否可以按两列分组?因此绘制了交叉产品 geom_point()geom_smooth()

例如:

frame <- data.frame(series <- rep(c('a', 'b'), 6), sample <- rep(c('glass',
'water', 'metal'), 4), data <- c(1:12))

ggplot(frame, aes()) # ...

这样点612共享一个组,但不与3共享。

3 个答案:

答案 0 :(得分:126)

this question为例,使用interaction将两列合并为一个新因素:

# Data frame with two continuous variables and two factors 
set.seed(0)
x <- rep(1:10, 4)
y <- c(rep(1:10, 2)+rnorm(20)/5, rep(6:15, 2) + rnorm(20)/5)
treatment <- gl(2, 20, 40, labels=letters[1:2])
replicate <- gl(2, 10, 40)
d <- data.frame(x=x, y=y, treatment=treatment, replicate=replicate)

ggplot(d, aes(x=x, y=y, colour=treatment, shape = replicate,
  group=interaction(treatment, replicate))) + 
  geom_point() + geom_line()

ggplot example

答案 1 :(得分:56)

例如:

 qplot(round, price, data=firm, group=id, color=id, geom='line') +  
      geom_smooth(aes(group=interaction(size, type)))

答案 2 :(得分:25)

为什么不只是paste这两个列并将 变量用作组?

frame$grp <- paste(frame[,1],frame[,2])

更正式的方法是使用函数interaction