Im new to Python Pandas, and was wondering if there was a way to join left two .csv files based on the column index number, at the moment i have this.
#Obtaining first csv files
neutral = pd.read_csv('neutral.csv')
meter = pd.read_csv('meter.csv')
#Left joins on MSN them to create merged Dataframe
merged = pd.merge(ph_neutral, meter,
on='MSN',
how='left')
but instead of joining on 'MSN' i want to join on the column index 1