Good alternative to Pandas .append() method, now that it has been deprecated?
I use the following method a lot to append a single row to a dataframe. However, it has been deprecated . One thing I really like about it is that it allows you to append a simple dict object. For example: # Creating an empty dataframe df = pd.DataFrame(columns=['a', 'b']) # Appending a row df = df.append({ 'a': 1, 'b': 2 }, ignore_index=True) Again, what I