Combine Group and Sort
General Info
Useful Snippets

11.0.0 JOIN or MERGE two dataframes

Example:

DF = pd.merge(DF1 , DF2
                       , left_on  = 'DF1_ID'   # the ID from the DF on the left
                       , right_on = 'DF2_ID'  # the ID from the DF on the right
                       , how = 'left')               # specify the join type