Posts by Caio Castro • 101 points
1 post
-
0
votes2
answers1391
viewsA: Concatenate two Dataframes
Another option is to use the pd.concat: dfA = pd.read_csv('yourfile_A.csv') dfB = pd.read_csv('yourfile_B.csv') df = pd.concat([dfA, dfB], axis=1) Axis = 0 or Axis = 1 defines whether you want to…