Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python dt error only use with datetimelike values

# Your problem here may be that to_datetime silently failed so the dtype remained as str/object, 
# if you set param errors='coerce' then if the conversion fails for any particular string 
# then those rows are set to NaT.

df['Date'] = pd.to_datetime(df['Date'], errors='coerce')
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #python #dt #error #datetimelike #values
ADD COMMENT
Topic
Name
9+3 =