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

c# - SelectList with Dictionary, add values to the Dictionary after it's assigned to SelectList -

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

ios - I get the error Property '...' not found on object of type '...' -