convert a dataframe column from string to int python except nan code example
Example 1: make string numeric pandas
df['DataFrame Column'] = df['DataFrame Column'].astype(int)
Example 2: convert pandas series from str to int
df['DataFrame Column'] = pd.to_numeric(df['DataFrame Column'])