gpt4 book ai didi

r - dplyr:case_when() 在多个列上具有多个条件

转载 作者:行者123 更新时间:2023-12-01 12:08:12 33 4
gpt4 key购买 nike

我制作了这个最小的可重现示例来举例说明我的问题。我已经设法解决了这个问题,但我相信还有更优雅的编码方式。

问题是关于基于多个标准的二元分类。为了接收一个 donut (编码为 1),至少需要 3 分(或更高):至少一个“a”标准项目,至少两个“b”标准项目和至少三个“c”标准项。如果不满足这些要求,则不会授予 donut (编码 0)。

这是我的解决方案。您将如何更简洁/优雅地对其进行编码?

require(dplyr)
df <- data.frame("a1" = c(3,2,2,5),
"a2" = c(2,1,3,1),
"b1" = c(2,1,5,4),
"b2" = c(1,2,1,4),
"b3" = c(3,2,3,4),
"c1" = c(3,3,1,3),
"c2" = c(4,2,3,4),
"c3" = c(3,3,4,1),
"c4" = c(1,2,3,4),
stringsAsFactors = FALSE)

df_names <- names(df[, 1:9])
a_items <- names(df[, 1:2])
b_items <- names(df[, 3:5])
c_items <- names(df[, 6:9])

df_response <- df %>%
select(df_names) %>%
mutate_all(
funs(case_when(
. >=3 ~ 1,
is.na(.) ~ 0,
TRUE ~ 0))) %>%

mutate(a_crit = case_when( rowSums(.[ ,a_items]) >=1 ~ 1, # one a item needed
TRUE ~ 0)) %>%
mutate(b_crit = case_when( rowSums(.[ ,b_items]) >=2 ~ 1, # two b items needed
TRUE ~ 0)) %>%
mutate(c_crit = case_when( rowSums(.[ ,c_items]) >=3 ~ 1, # three c items needed
TRUE ~ 0)) %>%
mutate(overal_crit = case_when( a_crit == 1 & b_crit == 1 & c_crit == 1 ~ 1,
TRUE ~ 0))

df_response$overal_crit

最佳答案

我会用简单的mutate称呼

library(dplyr)

df %>%
mutate(a_crit = as.integer(rowSums(.[a_items] >= 3) >= 1),
b_crit = as.integer(rowSums(.[b_items] >= 3) >= 2),
c_crit = as.integer(rowSums(.[c_items] >= 3) >= 3),
overal_crit = as.integer((a_crit + b_crit + c_crit) == 3))

# a1 a2 b1 b2 b3 c1 c2 c3 c4 a_crit b_crit c_crit overal_crit
#1 3 2 2 1 3 3 4 3 1 1 0 1 0
#2 2 1 1 2 2 3 2 3 2 0 0 0 0
#3 2 3 5 1 3 1 3 4 3 1 1 1 1
#4 5 1 4 4 4 3 4 1 4 1 1 1 1

关于r - dplyr:case_when() 在多个列上具有多个条件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54557806/

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