m is a list of 2 as shown below:
[[1]]
[,1] [,2]
[1,] "a" "b"
[[2]]
[,1]
[1,] "a"
[2,] "b"
Now I need to use these sub lists in my group_by_at function, such that there are 3 group by(s): (1): by a, (2): by b, and (3) by "a & b". I have been constantly failing to achieve this. group_by_at function gives me error: must evaluate to column positions or names, not a list. Any help will be greatly appreciated.
Thanks!