In all the examples and answers on here that I've seen, if there is the need to add an empty row ina Pandas dataframe, all use:
ignore_index=True
What should I do if i want to leave the current index, and append an empty row to the dataframe with a given index?
df1 = pd.DataFrame(np.insert(df1.values, index, values=[" "] * len(df1.columns), axis=0),columns = df1.columns)