I am trying to understand how to use walk to silently (without printing to the console) return ggplot2 plots in a pipeline.
walk
ggplot2
library
This should work
10 %>% rerun(x = rnorm(5), y = rnorm(5)) %>% map(~ data.frame(.x)) %>% map(function(x) { ggplot(x, aes(x, y)) + geom_point() })