pandas make new dataframe from columns code example
Example 1: copy only some columns to new dataframe in r
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)
Example 3: create new dataframe from columns pandas
new_dataset = dataset[['A','D']]