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