我在使用lapply
中有一个关于将多个参数传递给函数的问题R
。
当我将lapply与-的语法一起使用时,lapply(input, myfun);
这很容易理解,我可以这样定义myfun:
myfun <- function(x) {
# doing something here with x
}
lapply(input, myfun);
和的元素input
作为x
参数传递给myfun
。
但是,如果我需要传递更多的参数myfunc
呢?例如,它的定义如下:
myfun <- function(x, arg1) {
# doing something here with x and arg1
}
如何通过传递两个input
元素(作为x
参数)和其他一些参数来使用此函数?