在 lapply 内但在其外打印 data.frame 的值不会保留这些值。
lapply(names(RFEresults), function(x)
{
feats <- extractFeatures(RFEresults[[x]])
featurestat[which(featurestat[, 1]==x),rownames(feats)] <- feats$time.choosen
print(featurestat[1, ])
})
print(featurestat[1, ])
lapply 不保留值吗?