Answers for "replace column text with the substrings in pandas"

0

pandas replace substring in column names

df.columns = df.columns.astype(str).str.replace("[()]", "_")
Posted by: Guest on July-25-2021

Code answers related to "replace column text with the substrings in pandas"

Python Answers by Framework

Browse Popular Code Answers by Language