是否可以按两列分组?因此绘制了交叉产品
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()) # ...
这样点6
和12
共享一个组,但不与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()
答案 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
。