Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
x <- list(1, 10, 100) y <- list(1, 2, 3) z <- list(5, 50, 500) purrr::pmap(list(x, y, z), sum)
输出是:
[[1]] NULL [[2]] NULL [[3]] NULL
实际上,这是函数文档中的一个示例。