pandas make dataframe from another dataframe code example
Example 1: select columns to include in new dataframe in python
new = old[['A', 'C', 'D']].copy()
Example 2: select columns to include in new dataframe in python
new = old.filter(['A','B','D'], axis=1)