how to insert a new row in a specific location dataframe code example
Example: insert row in any position pandas dataframe
line = DataFrame({"onset": 30.0, "length": 1.3}, index=[3])
df2 = concat([df.iloc[:2], line, df.iloc[2:]]).reset_index(drop=True)