[Feature Engineering] how to convert a date string to datetime

Let’s say that we have a dataset like rainfall in Australia (where I can find this? in kaggle) In this dataset, we have a date column that looks like this: >>> df[‘Date’] 0 2008-12-01 1 2008-12-02 2 2008-12-03 3 2008-12-04 4 2008-12-05 … 145455 2017-06-21 145456 2017-06-22 145457 2017-06-23 145458 2017-06-24 145459 2017-06-25 Name: Date,

Continue reading [Feature Engineering] how to convert a date string to datetime