I have a loop in Python which sequentially imports CSV files, assigns them to a temporary DataFrame object and then attempts to merge/concact them to a 'master' DataFrame. The code is below:
for csv_path in csv_paths:
df = pd.read_csv(''+csv_path+'')
df = df.set_index('Player')
if len(MLS_Stats) == 0:
MLS_Stats = pd.concat([MLS_Stats,df])
else:
MLS_Stats = pd.merge(MLS_Stats, df, how="outer",left_index=True,right_index=True)
The MLS_Stats DF is initially empty, which is the reasoning for the if loop, since I don't think you can merge a DF with an empty DF.
For each merge, I want build the DataFrame by including any new uniquely indexed rows and new columns, but exclude overlapping columns. The above code currently includes the overlapping columns with _x and _y suffixes.
I know there must be something I'm not understanding, because this doesn't seem like an uncommon situation.
df_list = [df1,df2,df3], and then concatenate them all at the same timeMLS_Stats = pd.concat(df_list)? – Aman Nov 8 '12 at 23:43