You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In line 16, the user specified end date was not converted to a datetime object. It was throwing an error. I fixed it manually by adding datetime.strptime(recency_end_date, '%m/%d/%y') around recency_end_date.
In line 16, the user specified end date was not converted to a datetime object. It was throwing an error. I fixed it manually by adding
datetime.strptime(recency_end_date, '%m/%d/%y')
aroundrecency_end_date
.From the
rfm_utils.py
file:Before:
After
The text was updated successfully, but these errors were encountered: