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

javascript - Unusual behaviour when drawing lots of images onto a large canvas -

how can i manage url using .htaccess in php? -

javascript - Chart.js - setting tooltip z-index -