pd remove columns code example
Example 1: drop a column pandas
df.drop(['column_1', 'Column_2'], axis = 1, inplace = True)
Example 2: drop variable pandas
# pandas drop a column with drop function
gapminder_ocean.drop(['pop'], axis=1)
df.drop(['column_1', 'Column_2'], axis = 1, inplace = True)
# pandas drop a column with drop function
gapminder_ocean.drop(['pop'], axis=1)