'Converting object to datetime format in python
Below is the first row of my csv DateTime column:
Mon Nov 02 20:37:10 GMT+00:00 2015
The DateTime column is currently an object and I want to convert it to datetime format so that I can get the date to appear as 2015-11-02 and I will create a separate column for the time.
The code I am using to convert the column to date time format is:
for item, frame in df['DateTime'].iteritems():
datetime.datetime.strptime(df['DateTime'], "%a-%b-%d-%H-%M-%S-%Z-%Y")
I am getting this error:
> TypeError: must be str, not Series
Any help would be greatly appreciated!
Solution 1:[1]
Use pd.to_datetime()
:
df['DateTime'] = pd.to_datetime(df['DateTime'])
For example,
pd.to_datetime('Mon Nov 02 20:37:10 GMT+00:00 2015')
produces Timestamp('2015-11-02 20:37:10')
.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | Alicia Garcia-Raboso |