pandas new dataframe from columns 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()

Example 3: select columns to include in new dataframe in python

new = old.filter(['A','B','D'], axis=1)

Example 4: copy only some columns to new dataframe in r

new = pd.DataFrame([old.A, old.B, old.C]).transpose()

Example 5: create new dataframe from columns pandas

new_dataset = dataset[['A','D']]

Tags:

Misc Example