How can one pipe a data frame to a function whose argument pipes a dot?
mpg %>% rbind(., . %>% rev())
Error in rep(xi, length.out = nvar) : attempt to replicate an object of type 'closure'
Another example:
mpg %>%
{
. %>% arrange(manufacturer)
}
Functional sequence with the following components:
- arrange(., manufacturer)
Use 'functions' to extract the individual functions.