Z = data.frame(var1 = c(1,2,3,4,5), var2 = LETTERS[1:5])
testfun <- function(x){
print(x) # prints the data
# but how to get names of the list coming in?
return(NULL)
}
res = lapply(Z, testfun)
我想访问 testfun 中的变量“var1”和“var2”。如何在 testfun 中检索这些变量?lapply 是否会传递这些信息?colnames(x)
不起作用。