lapply의 FUN에 여러 인수 전달 (및 기타 * apply)
lapplyin을 사용할 때 여러 인수를 함수에 전달하는 것과 관련된 질문 이 R있습니다. lapply를 구문과 함께 사용하면 lapply(input, myfun);쉽게 이해할 수 있으며 myfun을 다음과 같이 정의 할 수 있습니다. myfun <- function(x) { # doing something here with x } lapply(input, myfun); 및의 요소는 input에 x인수로 전달됩니다 myfun. 하지만 더 많은 …