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
Only problem I had was with the date format :(. It took me a while to decipher how the input format for date ought to look like and then to transform the data.
The solution that I had for my input data which looked like this: (str) 2022-06-22 was
df['date']= pd.to_datetime(df['date'])
df['new_formatted_date'] = df.date.dt.strftime('%m/%d/%y %H:%M')
How to solve the issue?
I recommend to either:
A) Clarify exactly how the input data needs to look like
B) Enable multiple common date type input and transform them on the back-end
The text was updated successfully, but these errors were encountered:
Hi, LOVE this library. Super helpful.
Only problem I had was with the date format :(. It took me a while to decipher how the input format for date ought to look like and then to transform the data.
The solution that I had for my input data which looked like this: (str) 2022-06-22 was
df['date']= pd.to_datetime(df['date'])
df['new_formatted_date'] = df.date.dt.strftime('%m/%d/%y %H:%M')
How to solve the issue?
I recommend to either:
A) Clarify exactly how the input data needs to look like
B) Enable multiple common date type input and transform them on the back-end
The text was updated successfully, but these errors were encountered: