Closed moodymudskipper closed 4 years ago
.data
and .subset
are a bit long, and we changed .x
into .X
because it was conflictiing ,
think we should go for :
.D
, like Data, is the current data, considering the previous transformations that occured in ..., same as .X
initially.C
, like Chunk, is similar to what data.table calls .SD, it's the given group of subsetted data when grouping, it's the same as .data if we have no group. Same as .D
outside of grouping/along operations.N
is nrow(.C)
.x
is the name of the first arg, we just make sure it's accessible in every argument.x
is the original data before subsetting with.i
or.j
,.data
is the data current data, considering the previous transformations that occured in...
.subset
is similar to what data.table calls.SD
, it's the given group of subsetted data when grouping, it's the same as.data
if we have no group.