Answers for "astype datetime pandas"

15

convert column in pandas to datetime

df['col'] = pd.to_datetime(df['col'])
Posted by: Guest on April-16-2020
8

change dataframe column type

>>> df.astype({'col1': 'int32'}).dtypes
col1    int32
col2    int64
dtype: object
Posted by: Guest on July-09-2020
0

pandas astype datetime

# converting the string to datetime format
df['Dates'] = pd.to_datetime(df['Dates'], format='%y%m%d')
 
# printing dataframe
print(df)
print(df.dtypes)
Posted by: Guest on April-08-2021
0

convert a number column into datetime pandas

# convert the 'Date' column to datetime format
df['Date']= pd.to_datetime(df['Date'])
 
# Check the format of 'Date' column
df.info()
Posted by: Guest on January-14-2021

Python Answers by Framework

Browse Popular Code Answers by Language