Answers for "write a python program to convert the data type of the columns from object to numeric using the to_numeric() function of the pandas module."

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 "write a python program to convert the data type of the columns from object to numeric using the to_numeric() function of the pandas module."

Python Answers by Framework

Browse Popular Code Answers by Language