Frank
Results
2
comments of
Frank
I ran into this today. A simple example: ``` 1:3 %>% .[-1][-1] # Error in .[.[-1], -1] : incorrect number of dimensions 1:3 %>% { .[-1][-1] } # [1] 3...
Yeah, that works, though it is clunky to (i) write the column names twice and (ii) not have the conditions embedded in a template or token, as I could with...