I am trying to insert a new row in between data frame (6th row precisely) and I am unable to without overriding the existing row. Can you please help me correct this?
out2.loc[6] = ['EMPTY LINE']
out2.index = out2.index + 1
out2 = out2.sort_index()
print(out2)