drop if column pandas code example
Example 1: df drop column
df = df.drop(['B', 'C'], axis=1)
Example 2: drop variable pandas
# pandas drop a column with drop function
gapminder_ocean.drop(['pop'], axis=1)
df = df.drop(['B', 'C'], axis=1)
# pandas drop a column with drop function
gapminder_ocean.drop(['pop'], axis=1)