gpt4 book ai didi

R:分组变量第一次出现的唯一计数

转载 作者:行者123 更新时间:2023-12-04 10:29:23 25 4
gpt4 key购买 nike

我想通过对变量“ID”进行分组来创建一个新变量“Count”,它是因子“Period”的唯一值的计数。以下数据包括一列,其中包含我希望在“计数”中使用的值:

structure(list(ID = structure(c(1L, 1L, 1L, 1L, 2L, 2L, 2L, 2L
), .Label = c("a", "b"), class = "factor"), Period = c(1.1, 1.1,
1.2, 1.3, 1.2, 1.3, 1.5, 1.5), Count = c(1L, 1L, 2L, 3L, 1L,
2L, 3L, 3L)), .Names = c("ID", "Period", "Count"), class = "data.frame", row.names = c(NA,
-8L))

我尝试将 mutate 与 Count = 1:length(Period) 一起使用,但它创建了“Period”的每个值的累积计数,而我只想要唯一值的累积计数。这是我尝试过的:

library(plyr)
samp1<-ddply(samp, .(ID, Period), mutate, Count = 1:length(Period))

谁能提供正确的功能来使用?

最佳答案

编辑 - 新答案

现在仔细想想,如果每个组元素没有组合在一起,我最初的方法将不会返回正确的结果,例如

v <- c(1, 3, 2, 2, 1, 2)

我的函数会将不连续的 12 放在不同的组中

myrleid(v)
## [1] 1 2 3 3 4 5

因此,最好的方法似乎是

match(v, unique(v))
## [1] 1 2 3 3 1 3

将同时保留外观顺序将未排序的值保留在同一组中

因此,我建议只做

library(data.table)
setDT(df)[, Count2 := match(Period, unique(Period)), by = ID]

或(以 R 为基数)

with(df, ave(Period, ID, FUN = function(x) match(x, unique(x))))

旧答案

看起来很适合 data.table devel 中的 rleid 函数GH 上的版本

### Devel version installation instructions
# library(devtools)
# install_github("Rdatatable/data.table", build_vignettes = FALSE)

library(data.table) # v 1.9.5+
setDT(df)[, Count2 := rleid(Period), by = ID]
df
# ID Period Count Count2
# 1: a 1.1 1 1
# 2: a 1.1 1 1
# 3: a 1.2 2 2
# 4: a 1.3 3 3
# 5: b 1.2 1 1
# 6: b 1.3 2 2
# 7: b 1.5 3 3
# 8: b 1.5 3 3

或者,如果你不想加载外部包,我们可以自己定义这个函数

myrleid <- function(x) {
temp <- rle(x)$lengths
rep.int(seq_along(temp), temp)
}

with(df, ave(Period, ID, FUN = myrleid))
## [1] 1 1 2 3 1 2 3 3

或者如果这些组是按升序排列的,您也可以尝试对它们进行排名

library(data.table) ## V1.9.5+
setDT(df)[, Count2 := frank(Period, ties.method = "dense"), by = ID]

或者

library(dplyr)
df %>%
group_by(ID) %>%
mutate(Count2 = dense_rank(Period))

关于R:分组变量第一次出现的唯一计数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32081271/

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