When parsing the raw dataframe, convert the incoming datestring (suffix format) to a date object. Something like: ```python from dateutil import parser date_string = 'April 19th, 2023' date = parser.parse(date_string).date() ```
When parsing the raw dataframe, convert the incoming datestring (suffix format) to a date object. Something like: