pandas two columns code example
Example 1: merge two dataframes based on column
df_outer = pd.merge(df1, df2, on='id', how='outer')
df_outer
Example 2: plotting two columns of a dataframe in python
df.plot(x='col_name_1', y='col_name_2', style='o')
Example 3: how to pick out separate columns from the pandas dataframe object
df1 = df.iloc[:, 0:2] # If you want to do it by index. Remember that Python does not slice inclusive of the ending index.
df1 = df[['a', 'b']] ## if you want to do it b nae