data['Occurrence Local Date Time']=pd.to_datetime(data['Occurrence Local Date Time'],dayfirst=True )
When converting the Occurance Date Time to datetime, Make sure you make dayFirst=True. If you don't do so, pandas would assume that the first digit of your date is a month.
Can you please elaborate?
data['Occurrence Local Date Time']=pd.to_datetime(data['Occurrence Local Date Time'],dayfirst=True ) When converting the Occurance Date Time to datetime, Make sure you make dayFirst=True. If you don't do so, pandas would assume that the first digit of your date is a month.
I think you should update your Pandas version :D