I'm looking at the example of the magrittr tee pipe %T>% in the documentation, but I'm not immediately grasping what it's doing. Can someone show what the equivalent code is without the tee pipe?
rnorm(200) %>%
matrix(ncol = 2) %T>%
plot %>% # plot usually does not return anything.
colSums