pandas remove column code example
Example 1: drop a column pandas
df.drop(['column_1', 'Column_2'], axis = 1, inplace = True)
Example 2: drop a column from dataframe
df.drop('column_name', axis=1, inplace=True)
Example 3: python code to drop columns from dataframe
new_df = df.drop(labels='column_name', axis=1)
df = df.drop(labels='column_name', axis=1)
df = df.drop(['list_of_column_names'], axis=1)
Example 4: drop columns pandas
df.drop(columns=['B', 'C'])
Example 5: python - drop a column
df.drop(['A', 'B', 'C'], axis=1, inplace=True)
Example 6: pandas remove column
del df['column_name']