Date Time Format Specifications for danfo.to_datetime #156
-
Hi lovely people! Some few days ago I found this amazing library and I'ven learning a lot about it, but nowadays I'm facing issues that I couldn't figure out. I'd like to know what should the format be for danfo.to_datetime parsing function? I've been trying many formats and the only thing that I get is "Invalid date, the date format not recognise". Thanks in advance. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
@churchill1973 here are the format But i think the time format you specified above is a valid one but it's not included in the list of our time format. You can give an example of such date format here and I can check if it will work by just adding it to the list |
Beta Was this translation helpful? Give feedback.
-
@churchill1973 As of version 0.3.0 we now use JS default date internally. This means any Date string supported by JS now works, and you don’t have to specify a format. In case where you weird format not supported by the default JS Date. You would have to do some preprocessing. |
Beta Was this translation helpful? Give feedback.
@churchill1973 As of version 0.3.0 we now use JS default date internally. This means any Date string supported by JS now works, and you don’t have to specify a format.
In case where you weird format not supported by the default JS Date. You would have to do some preprocessing.