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.
我有一个函数h(n)返回每个整数 1 =< n =< k 的值。
h(n)
如何构建(h(1), h(2), h(3), ...)k 较大的表单列表,因此手动执行此操作需要一些时间。
(h(1), h(2), h(3), ...)
如果没有你的函数,我不确定,但lapply(1:k, h)应该取 1 到 k 之间的每个值并将其发送到你的函数并在列表中返回它们。
lapply(1:k, h)
> h <- function(n) return(1:n) > lapply(1:5, h) [[1]] [1] 1 [[2]] [1] 1 2 [[3]] [1] 1 2 3 [[4]] [1] 1 2 3 4 [[5]] [1] 1 2 3 4 5
PS这不是作业吧?