Combine Group and Sort
General Info
Useful Snippets

11.0.2 Append a new row to a DataFrame with a Dictionary

Example:

# create dictionary with the column names a new values for each column
new_row = {"A":10, "B":'z', "C":"business","has_nulls": "here here"}

# use .append() to add the row to your DF
DF = DF.append(new_row, ignore_index=True)