create df from another df 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: copy only some columns to new dataframe in r
new = old[['A', 'C', 'D']].copy()