Answers for "drop columns that are not in train dataframe python"

3

drop a column from dataframe

#working with "text" syntax for the columns:
df.drop(['column_nameA', 'column_nameB'], axis=1, inplace=True)
Posted by: Guest on August-25-2020
-1

drop variable pandas

# pandas drop a column with drop function
gapminder_ocean.drop(['pop'], axis=1)
Posted by: Guest on June-15-2020

Code answers related to "drop columns that are not in train dataframe python"

Python Answers by Framework

Browse Popular Code Answers by Language