df remove columns code example
Example 1: drop a column pandas
df.drop(['column_1', 'Column_2'], axis = 1, inplace = True)
Example 2: df drop column
df = df.drop(['B', 'C'], axis=1)
Example 3: drop columnd python
>>> df.drop(columns=['B', 'C'])
A D
0 0 3
1 4 7
2 8 11
Example 4: drop variable pandas
# pandas drop a column with drop function
gapminder_ocean.drop(['pop'], axis=1)