Answers for "deleting column in dataframe"

85

delete column pandas dataframe

df.drop(['column_1', 'Column_2'], axis = 1, inplace = True)
Posted by: Guest on November-08-2020
3

drop a column from dataframe

df = df.drop('column_name', 1)
Posted by: Guest on August-25-2020
-1

drop dataframe columns

# Drop The Original Categorical Columns which had Whitespace Issues in their values
df.drop(cat_columns, axis = 1, inplace = True)

dict_1 = {'workclass_stripped':'workclass', 'education_stripped':'education', 
         'marital-status_stripped':'marital_status', 'occupation_stripped':'occupation',
         'relationship_stripped':'relationship', 'race_stripped':'race',
         'sex_stripped':'sex', 'native-country_stripped':'native-country',
         'Income_stripped':'Income'}

df.rename(columns = dict_1, inplace = True)
df
Posted by: Guest on April-12-2021

Code answers related to "deleting column in dataframe"

Python Answers by Framework

Browse Popular Code Answers by Language