powered by
rbind()
cbind()
checkBind(data, bind)
do.call('rbind')
do.call('cbind')
data <- list(c(1,1,1),c(2,2,2)) bind <- 'rbind' checkBind(data,bind) data(testdl) checkBind(testdl, 'rbind') # Since the colnames in testdl are not the same, so it cannot be bound. #
Run the code above in your browser using DataLab