#rstats users who’ve… uh, embraced 😅 the native pipe, how do you pipe into blocks you would’ve previously embraced (like ggplot calls)?

I’m really not thrilled with the anonymous function + native pipe combo, but I’m still deciding how much I trust using with…

@jimjamslam why embrace here at all? Can just do
mtcars |> ggplot() + geom_point()
@wiernik You can't pipe back out (eg. to ggsave), unfortunately!

@jimjamslam ah that makes sense. That’s a situation where I usually assign a plot to a name before saving, so I hadn’t encountered it.

{pipebind} package might be good in this case

@wiernik yeah, it's probably a bad habit of mine tbh!