Horje
how to convert data type of a column in pandas Code Example
how to convert data type of a column in pandas
# You can use "astype" method
# suppose you want to correct your "sales" column data type
df['sales'] = df['sales'].astype('float64')
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)
change dataframe column type
>>> df.astype({'col1': 'int32'}).dtypes
col1    int32
col2    int64
dtype: object
convert pandas column type
# 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)




Python

Related
round python with list Code Example round python with list Code Example
python open web browser Code Example python open web browser Code Example
how to open any program on python Code Example how to open any program on python Code Example
control tor browser with python Code Example control tor browser with python Code Example
python selenium go back Code Example python selenium go back Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
6