reduce () combines from the left, reduce_right() combines from the right. ... 1), c(2, 3), c(4, 5)) x %>% reduce(c) x %>% reduce_right(c) # Equivalent to: x ...
確定! 回上一頁