我有一个 data.tableDT
如下。
DT <- structure(list(V1 = structure(1:3, .Label = c("S01", "S02", "S03" ), class = "factor"), V2 = structure(c(1L, 3L, 2L), .Label = c("Alan Hal << Guy John", "Bruce Dick Jean-Paul << Damien", "Jay << Barry Wally Bart"), class = "factor")), .Names = c("V1", "V2"), row.names = c(NA, -3L), class = "data.frame")
# DT
# V1 V2
# 1 S01 Alan Hal << Guy John
# 2 S02 Jay << Barry Wally Bart
# 3 S03 Bruce Dick Jean-Paul << Damien
setDT(DT)
我正在尝试将列拆分V2
为“<<”并在两个新列中获取输出。
我可以使用以下方法完成它stringi
T <- as.data.frame(do.call(rbind, stri_split_fixed(DT$V2, "<<", 2)))
setnames(T, old = colnames(T), new = c("V3", "V4"))
cbind(DT, T)
V1 V2 V3 V4
1: S01 Alan Hal << Guy John Alan Hal Guy John
2: S02 Jay << Barry Wally Bart Jay Barry Wally Bart
3: S03 Bruce Dick Jean-Paul << Damien Bruce Dick Jean-Paul Damien
但是,我想使用:=
运算符通过引用来做同样的事情。如何使用 data.table 做到这一点?
我对 RHS 部分有困难。
DT[, c("V1", "V2) := list()]
stri_split_fixed(DT$V2, "<<", 2)
给出长度为 2 的字符向量的 3 列表。如何获得长度为 3 的字符向量的 2 列表?