I have a csv that I'm trying to parse with Pandas, and there's a column that contains a 24 hour time, but it's just a simple number in the csv:
CaseNumber | OccurDate | OccurTime | OffenseCategory | OffenseType |
---|---|---|---|---|
20-X5397620 | 1/1/20 | 345 | Assault Offenses | Simple |
Should I join it with OccurDate so I can do the normal datetime parsing with Pandas?