pandas change dtype to timestamp
pd.to_datetime(df.column)
pandas change dtype to timestamp
pd.to_datetime(df.column)
date parser python pandas
import pandas as pd
values = {'dates': ['02-Sep-2019','13-Sep-2019','21-Sep-2019'],
'status': ['Opened','Opened','Closed']
}
df = pd.DataFrame(values, columns = ['dates','status'])
df['dates'] = pd.to_datetime(df['dates'], format='%d-%b-%Y')
print (df)
print (df.dtypes)
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us