使用r

时间:2016-10-06 11:50:15

标签: r lattice

我正在使用的数据来自 nutshell 包中的 births2006.smpl 。使用格子中的densityplot()函数,我能够生成如下图形:enter image description here

为此,我简单地使用了:

densityplot( ~ births2006.smpl$DBWT | births2006.smpl$DPLURAL, plot.points=FALSE, xlab="Birth Weight", layout=c(1,5))

现在,我试图将所有这些密度曲线叠加到一个密度图上,我已经假设可以使用densityplot()函数,但经过几个小时的尝试没有成功我不完全确定。这是我想要创建的情节: enter image description here

1 个答案:

答案 0 :(得分:1)

您需要使用groups参数。

library(nutshell)
data(births2006.smpl)

densityplot(~ DBWT, groups = DPLURAL, data = births2006.smpl,
            plot.points = FALSE, xlab = "Birth Weight")

enter image description here