How do I create a new DataFrame from another Dataframe by removing certain columns

select(df, Not([:col1,:col4, :col7])) if you want to create a new data frame.

1 Like