Any way to combine splits?
I have two splits, dfa
and dfb
.
dfa
is a Large list (4 elements) with 4 variables i.e. dfa[[1]]
selects the first split
dfb
is also a Large list (11 elements) with the same 4 variables.
Is there any way to make it as follows:
dfc
Large List (15 elements)
I want dfc[[1]]
to be the same as dfa[[1]]
and dfc[[5]]
to be the same as dfb[[1]]
.
I have tried to bind these but cbind
/rbind
does not work.