Open djnavarro opened 1 year ago
FWIW I think we're rather lukewarm on the new syntax, so I wouldn't go out of my way to switch to it.
Noted 😁
I actually don't mind the new syntax. It is clunky in some ways, but I feel that's a consequence of vars()
? The two-sided formula version was always a headache for me: I never had a good way of remembering whether LHS maps to rows or columns. But point taken... there are higher priorities!
I think if we were to do this again it would be facet_grid(rows = a, cols = b)
, but we can't easily back out of the vars()
syntax 😬
need to switch from
facet_grid(a ~ b)
tofacet_grid(rows = vars(a), cols = vars(b))
etc