标签: r data.table
我经常需要逐行处理data.table,而不进行分组。目前我在nrow中使用by(感谢@AnandaMahto提出的想法):
nrow
by
dt1[,{ # my code here }, by = 1:nrow(dt1)]
有更正确的方法吗?