FuturewAnning: Metode Frame. Gunakan pandas.concat sebagai gantinya.

# Create the new row as its own dataframe
df_new_row = pd.DataFrame({ 'a': [1], 'b': [2] })
df = pd.concat([df, df_new_row])
Active Programmer