两行ggplot2之间的区别

时间:2014-03-13 17:37:49

标签: r ggplot2 difference

我想将两行之间的差异添加到ggplot2。 在此示例中,在x2定义的两个组的行之间。 如何才能做到这一点?

y=rbinom(100,1,.4)
x1=rnorm(100, 3, 2)
x2=rbinom(100, 1, .7) 
sub = data.frame(y=y, x1=x1, x2=x2)

ggplot(sub, aes(x1, y, color = x2))   + 
      stat_smooth(method = "glm", family = binomial, formula = y ~ poly(x1,3))

1 个答案:

答案 0 :(得分:3)

您应该在代码中更改两件事。首先,在stat_smooth()内使用xy,而不是实际的变量名称(函数会知道您的x值为x1)。其次,在x2内包裹factor()以使其具有两种不同的颜色。

ggplot(sub, aes(x=x1, y=y, color = factor(x2))) + 
  stat_smooth(method = "glm", family = binomial, formula = y ~ poly(x,3))

enter image description here