I'm looking to do the equivalent of a cut and paste in Excel but can't seem to find the right code for it. Everything i read is about concatenation but I'm looking to take 3 series of data of 10 rows each, as an example, and make 1 series of 30 rows in a new df. Thanks.
Asked
Active
Viewed 65 times
0
-
`pd.concat` is one way and it will cut and paste the three rows on top of each other like Excel. – XXavier Jun 16 '20 at 13:38
-
`pd.concat[df1,df2,df3])` then specify your axis `1` = columns `0` = rows. – Umar.H Jun 16 '20 at 14:19
-
Does this answer your question? [Pandas Merging 101](https://stackoverflow.com/questions/53645882/pandas-merging-101) – Umar.H Jun 16 '20 at 14:19