pandas create a new dataframe from existing code example
Example 1: python create new pandas dataframe with specific columns
# Basic syntax:
new_dataframe = old_dataframe.filter(['Columns','you','want'], axis=1)
Example 2: select columns to include in new dataframe in python
new = old.filter(['A','B','D'], axis=1)