gpt4 book ai didi

r - 在 R 中创建条件计数变量

转载 作者:搜寻专家 更新时间:2023-10-30 20:24:58 24 4
gpt4 key购买 nike

我想创建一个计数变量,其中包含每个给定年份中 Z==0 的人数。如下图所示:

PersonID    Year    Z   Count*
1 1990 0 1
2 1990 1 1
3 1990 1 1
4 1990 2 1
5 1990 1 1
1 1991 1 3
2 1991 0 3
3 1991 1 3
4 1991 0 3
5 1991 0 3
1 1992 NA 1
2 1992 2 1
3 1992 2 1
4 1992 0 1
5 1993 1 0
1 1993 1 0
2 1993 2 0
3 1993 NA 0
4 1993 1 0
5 1994 0 5
1 1994 0 5
2 1994 0 5
3 1994 0 5
4 1994 0 5

我查看了我以前的 R 脚本并发现了这个

library(dplyr)
sum_data <- data %>% group_by(PersonID) %>% summarise(Count = sum(Z, na.rm=T))

有人可以帮我解决这个问题吗? count 变量应该基本上计算 Z==0 的总人数,格式与我上面说明的相同。谢谢!!

dput(data)
structure(list(PersonID = c(1L, 2L, 3L, 4L, 5L, 1L, 2L, 3L, 4L,
5L, 1L, 2L, 3L, 4L, 5L, 1L, 2L, 3L, 4L, 5L, 1L, 2L, 3L, 4L),
Year = c(1990L, 1990L, 1990L, 1990L, 1990L, 1991L, 1991L,
1991L, 1991L, 1991L, 1992L, 1992L, 1992L, 1992L, 1993L, 1993L,
1993L, 1993L, 1993L, 1994L, 1994L, 1994L, 1994L, 1994L),
Z = c(0L, 1L, 1L, 2L, 1L, 1L, 0L, 1L, 0L, 0L, NA, 2L, 2L,
0L, 1L, 1L, 2L, NA, 1L, 0L, 0L, 0L, 0L, 0L)), .Names = c("PersonID",
"Year", "Z"), class = "data.frame", row.names = c(NA, -24L))

最佳答案

这是一个简单的解决方案:

library(dplyr)

sum_data <- df %>%
mutate(Z=replace(Z, is.na(Z), 1)) %>%
mutate(temp = ifelse(Z == 0, 1, 0)) %>%
group_by(Year) %>%
summarize(count = sum(temp))

基本上这就是代码的作用:

  • mutate(Z=replace(Z, is.na(Z), 1)) 将 NA 替换为 1(可选)
  • mutate(temp = ifelse(Z == 0, 1, 0)) 创建条件 temp变量:
  • ifelse(Z == 0, 1, 0) 说如果 Z == 0 那么值为 1否则 0
  • group_by(Year) 非常明确 :) 它将数据框分组年份
  • summarize(count = sum(temp)) 创建一个计数变量早期生成的温度总和

结果:

   Year count
<int> <int>
1 1990 5
2 1991 5
3 1992 4
4 1993 5
5 1994 5

如果您想将此数据连接到原始数据框,只需使用连接:

left_join(df, sum_data)
Joining, by = "Year"
PersonID Year Z count
1 1 1990 0 1
2 2 1990 1 1
3 3 1990 1 1
4 4 1990 2 1
5 5 1990 1 1
6 1 1991 1 3
7 2 1991 0 3
8 3 1991 1 3
9 4 1991 0 3
10 5 1991 0 3
11 1 1992 NA 1
12 2 1992 2 1
13 3 1992 2 1
14 4 1992 0 1
15 5 1993 1 0
16 1 1993 1 0
17 2 1993 2 0
18 3 1993 NA 0
19 4 1993 1 0
20 5 1994 0 5
21 1 1994 0 5
22 2 1994 0 5
23 3 1994 0 5
24 4 1994 0 5

关于r - 在 R 中创建条件计数变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39703047/

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