pandas difference between series and dataframe code example
Example 1: pandas series vs dataframe
dataframe (think 2D array) is made up of multiple series (1D array)
Example 2: pandas difference between two dataframes
source_df.merge(target_df,how='left',indicator=True).loc[lambda x:x['_merged']!='both']