ggplot2:面内几个线图的单个平滑线

时间:2016-10-24 08:15:01

标签: r plot ggplot2 smooth facet-wrap

我想绘制多个方面,每个方面有几行。在每个方面,对于一组线图,我想展示一种平滑线,代表给定特定方面中所有这些线的总趋势。 有人知道是否有可能吗?到目前为止我尝试过这样的事情:

ggplot(data = mydata, aes(x = x, y = y, group = group)) + geom_line('GRAY') + facet_wrap(~ class) + geom_smooth('loess') (see figure)

然而,我观察到的是每个方面内每个线图的另一条线,而不是每个方面内的一条线。

提前致谢

2 个答案:

答案 0 :(得分:0)

这是虹膜数据集的一个例子:

    gg <- ggplot(iris, aes(x = Sepal.Length, y = Petal.Length)) + 
            geom_line() + 
            facet_wrap(~ Species) +
            geom_smooth(data = within(iris, Species <- NULL), fill = "red")
    gg 

答案 1 :(得分:0)

... +
geom_smooth(aes(group=class), method="lm") +
...

应该打一行。方面