gpt4 book ai didi

r - 在 R data.table 中粘贴多列对的有效方法

转载 作者:行者123 更新时间:2023-12-04 02:48:24 26 4
gpt4 key购买 nike

我正在寻找一种使用 data.table 一次粘贴/合并多对相邻列的有效方法。我的微弱尝试很慢,也不那么优雅:

library(data.table)
dt <- data.table(ids = 1:3,
x1 = c("A","B","C"),
x2 = 1:3,
y1 = c("D", "E", "F"),
y2 = 4:6,
z1 = c("G", "H", "I"),
z3 = 7:9)

paste.pairs <- function(x, sep = "-"){
xx <- unlist(x)
x.len <- length(x)

r <- rep(NA, x.len/2)
s <- seq(1, x.len, by = 2)

for(i in 1:(x.len/2)) {
r[i] <- paste(xx[i], xx[i+1], sep = sep)
}
return(as.list(r))
}

dt[, paste.pairs(.SD), by = "ids"]

有没有更好的办法?

最佳答案

通过使用 seq 创建列索引来使用 Map 的选项

i1 <- seq(1, length(dt)-1, 2)
i2 <- seq(2, length(dt)-1, 2)
dt[, Map(paste,
.SD[, i1, with = FALSE], .SD[, i2, with = FALSE],
MoreArgs = list(sep="-")),
by = "ids"]

另一种选择是按数据集的名称拆分,然后粘贴

data.frame(lapply(split.default(dt[, -1, with = FALSE],
sub("\\d+$", "", names(dt)[-1])), function(x) do.call(paste, c(x, sep="-"))))
# x y z
#1 A-1 D-4 G-7
#2 B-2 E-5 H-8
#3 C-3 F-6 I-9

或者另一种选择是使用 melt/dcast

dcast(melt(dt, id.var = 'ids')[,  paste(value, collapse = "-"),
.(grp = sub("\\d+", "", variable), ids)], ids ~ grp, value.var = 'V1')

关于r - 在 R data.table 中粘贴多列对的有效方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56262149/

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