gpt4 book ai didi

r - dplyr:从 group_by 变量中删除 NA

转载 作者:行者123 更新时间:2023-12-05 04:15:59 25 4
gpt4 key购买 nike

我在 dplyr 中使用 group_by 函数,但是,在我分组依据的变量中,有 NA,group_by 将其分成一个单独的组。例如,我正在使用具有输出的以下代码:

> education <- group_by(data, DMDEDUC2)
> ed.prop <- summarise(education,
+ total = n(),
+ num.obese = sum(as.numeric(is.obese)),
+ pbar = num.obese/total,
+ margin = qnorm(.975)*sqrt(pbar*(1-pbar)/total),
+ lower = pbar - margin,
+ upper = pbar + margin
+ )
> ed.prop <- select(ed.prop, education = DMDEDUC2, total, num.obese, pbar, lower, upper)
> ed.prop
Source: local data frame [6 x 6]

education total num.obese pbar lower upper
1 1 501 170 0.3393214 0.2978613 0.3807814
2 2 734 297 0.4046322 0.3691244 0.4401399
3 3 1098 448 0.4080146 0.3789449 0.4370843
4 4 1576 605 0.3838832 0.3598728 0.4078937
5 5 1324 353 0.2666163 0.2427979 0.2904347
6 NA 4 0 0.0000000 0.0000000 0.0000000

如何才能不生成最后一行?我已经尝试将 na.rm = TRUE 作为 group_by() 中的参数,但没有成功。

最佳答案

在开始分析之前过滤掉 NA:

data<-data[!is.na(DMDEDUC2),]

然后继续。

关于r - dplyr:从 group_by 变量中删除 NA,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29501188/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com