Answers for "remove spaces from pandas columns"

1

replace all spacec column with underscore in pandas

import pandas as pd 

# remove spaces in columns name
df.columns = df.columns.str.replace(' ','_')
Posted by: Guest on June-04-2020
0

Python function remove all whitespace from all character columns in dataframe

df.columns = df.columns.str.replace(' ', '')
Posted by: Guest on December-24-2020
0

delete columns pandas

df = df.drop(df.columns[[0, 1, 3]], axis=1)  # df.columns is zero-based pd.Index 
df.drop(['column_nameA', 'column_nameB'], axis=1, inplace=True)
Posted by: Guest on August-22-2020

Code answers related to "remove spaces from pandas columns"

Python Answers by Framework

Browse Popular Code Answers by Language