%>% {ggvis} | R Documentation |
Like dplyr, ggvis also uses the pipe function, %>%
to turn
function composition into a series of imperative statements.
lhs,rhs |
A visualisation and a function to apply to it |
# Instead of layer_points(ggvis(mtcars, ~mpg, ~wt)) # you can write mtcars %>% ggvis(~mpg, ~wt) %>% layer_points()