r - Combine Data Frame with a List of Data Frames -


say have data frame x , list of 2 data frames l contains data frames y , z.

what best way create third list m contains dfs x, y , z?

i tried every column of x became element of m.

m = c(x,l) 

i'm sure there's simple solution missing here.

try this:

m <- c(l,list(x=x)) 

Comments

Popular posts from this blog

html - Cut text on left side inside button while centering -

plugins - CodeIgniter support on netbeans 8.0 -

php - Selecting items from MySQL for a status update feed efficiently while accounting for possible spam -