select columns from dataframe to create new dataframe code example
Example 1: select columns to include in new dataframe in python
new = old[['A', 'C', 'D']].copy()
Example 2: create new dataframe from columns pandas
new_dataset = dataset[['A','D']]