最佳答案
我们如何选择多列使用一个向量的数字索引(位置)在 data.table
?
这就是我们如何处理 data.frame
:
df <- data.frame(a = 1, b = 2, c = 3)
df[ , 2:3]
# b c
# 1 2 3