在处理data.frame中,有时候进行多个data.frame合并时会遇到某些列名并非不一致,比如多那么一两个的,
之前都非常认真的给每个data.frame补充齐全了各种列再合并,
今天发现还有个简便方法:
# Bind the results, as the columns might not be the same,
# we will will plyr rbind.fill , to have all columns
clinical <– plyr::rbind.fill(gbm_clin ,lgg_clin)
早咋不知道呢