79099312

Date: 2024-10-17 18:04:40
Score: 1.5
Natty:
Report link

This is occurring because the formats of df['formatted_date'] and '2024-08-05' are different, this can be fixed by adding this simple line: df['formatted_date'] = df['formatted_date'].dt.strftime("%Y-%m-%d")

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mind Castle