From this tutorial, I understand that pipes "take the output of one statement and make it the input of the next statement."
Can I select a piece of an output and make it an input of the next statement? For example, I'd like to know where the outliers are in this dataset :
mtcars$mpg %>% boxplot()$outliers %>% which
Thanks!