How can one pipe a data frame to a function whose argument pipes a dot?
mpg %>% rbind(., . %>% rev())
Error in rep(xi,
Wrap the dot to be piped in parentheses like (.):
(.)
mpg %>% rbind(., (.) %>% rev())
Or, for lambda function:
mpg %>% { (.) %>% arrange(manufacturer) }