I have this list of 2 dataframes
ll = list(df1 = data.frame(x = 1:4),
df2 = data.frame(y = 2:9) )
and I wish to obtain the following result
1 1
2 2
3 3
4 4
5 2
6 3
7 4
8 5
9 6
10 7
11 8
12 9
I have this list of 2 dataframes
ll = list(df1 = data.frame(x = 1:4),
df2 = data.frame(y = 2:9) )
and I wish to obtain the following result
1 1
2 2
3 3
4 4
5 2
6 3
7 4
8 5
9 6
10 7
11 8
12 9