Answers for "column pandas to numeric"

2

convert column to numeric pandas

# convert all columns of DataFrame
df = df.apply(pd.to_numeric) # convert all columns of DataFrame

# convert just columns "a" and "b"
df[["a", "b"]] = df[["a", "b"]].apply(pd.to_numeric)
Posted by: Guest on May-09-2020

Code answers related to "column pandas to numeric"

Python Answers by Framework

Browse Popular Code Answers by Language