Answers for "convert column from string to numeric pandas"

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
6

convert column string to int pandas

df['DataFrame Column'] = df['DataFrame Column'].astype(int)
Posted by: Guest on May-27-2020

Code answers related to "convert column from string to numeric pandas"

Python Answers by Framework

Browse Popular Code Answers by Language