I have a old version of Pandas (0.10...) and getting the new version will take time as it is an enterprise-wide change.
I am looking to convert a timestamp into mm/dd/yyyy format in Pandas 0.10, and I am at a loss as to_datetime() method does not seem to have format argument.
Can you please suggest a workaround?
Other option would be to have a way to convert the column to mm/dd/yyyy during to_csv() invocation.
df['column'].dt.strftime('%m/%d/%Y')...