as numeric python code example
Example 1: python: transform as type numeirc
df['myvar'] = df['myvar'].astype(str) # Transform as character
df['myvar'] = df['myvar'].astype(float) # Transform as float
df['myvar'] = df['myvar'].astype(int) # Transform as numeric
Example 2: string to float python
# Use the function float() to turn a string into a float
string = '123.456'
number = float(string)
number
# Output:
# 123.456
Example 3: float to int in python
# convert float to int
int(2.0) #output :2