dataframe change string to number code example
Example 1: make string numeric pandas
df['DataFrame Column'] = df['DataFrame Column'].astype(int)
Example 2: pandas frame convert string
df['DataFrame Column'] = pd.to_numeric(df['DataFrame Column'])