moodymudskipper / tb

IN ~PROGRESS my own take on `[.data.frame`
0 stars 0 forks source link

by = NA should take into account "<spread>" names #36

Closed moodymudskipper closed 4 years ago

moodymudskipper commented 4 years ago

So these should be equivalent :

names(Indometh)
#> [1] "Subject" "time"    "conc" 
Indometh %tb>%  .[`conc.<time>` = conc, .by = "Subject"]
Indometh %tb>%  .[`conc.<time>` = conc, .by = NA]
moodymudskipper commented 4 years ago

done