Answers for "data type to integer casting"

2

python change data type to integer

# convert Series
my_series = pd.to_numeric(my_series)

# convert column "a" of a DataFrame
df["a"] = pd.to_numeric(df["a"])
Posted by: Guest on November-13-2020
0

how to change dtype object to int

df['purchase'].astype(int)
Posted by: Guest on May-04-2021

Python Answers by Framework

Browse Popular Code Answers by Language