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
Post a Comment