how to add a row in between two rows in dataframe python 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)