Suppose I have three datasets
DF1=
Traj X Y
1 4 5
1 7 8
2 5 6
DF2=
Traj X Y
1 5 2
1 6 4
2 8 7
DF3=
Traj X Y
1 8 5
1 1 9
2 3 7
How can I combine them into one dataset like below:
DF1=
Traj X Y
1 4 5
1 7 8
2 5 6
1 5 2
1 6 4
2 8 7
1 8 5
1 1 9
2 3 7
I have many similar data that have similar elements and it would be easier to just combine them, unfortunately I don't know how to do so.