I have 5 tables containing the same columns A B C (same names of columns)
I want to create a data frame where i merge all of the five tables , I tried the command
My_Data <- data.frame(T1,T2,T3,T4,T5,T6)
but i got duplicating columns like this
A B C A1 B1 C1 A2 B2 C2 A3 B3 C3 A4 B4 C4
12 2 1 12 1 5 12 12 2 1 8 9 7 2 12
1 78 2 34 5 1 4 45 4 5 4 4 6 4 3
4 2 3 12 2 12 6 23 12 45 12 23 8 5 4
As you can see the number of columns duplicated 5 ( 35 = 15 ),but instead of this result, my desire output is like:
A B C
12 2 1
1 78 2
4 2 3
12 1 5
34 5 1
12 2 12
...
..