in R: combine columns of different dataframes
问题 I try to combine each columns of three different dataframes to get an object with the same length of the original dataframe and three columns of every subobject. Each of the original dataframe has 10 columns and 14 rows. I tried it with a for-loop, but the result is not usable for me. t <- NULL for(i in 1 : length(net)) { a <- cbind(imp.qua.00.09[i], exp.qua.00.09[i], net[i]) t <- list(t, a) } t But in the end I would like to get 10 seperated dataframes with three columns. So I want to loop