Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Extracting the hour from a time column in pandas

Suppose I have the following dataset:

enter image description here

How would I create a new column, to be the hour of the time?

For example, the code below works for individual times, but I haven't been able to generalise it for a column in pandas.

t = datetime.strptime('9:33:07','%H:%M:%S')
print(t.hour)
like image 707
MRHarv Avatar asked Dec 14 '22 14:12

MRHarv


1 Answers

Use to_datetime to datetimes with dt.hour:

df = pd.DataFrame({'TIME':['9:33:07','9:41:09']})

#should be slowier
#df['hour'] = pd.to_datetime(df['TIME']).dt.hour

df['hour'] = pd.to_datetime(df['TIME'], format='%H:%M:%S').dt.hour
print (df)
      TIME  hour
0  9:33:07     9
1  9:41:09     9

If want working with datetimes in column TIME is possible assign back:

df['TIME'] = pd.to_datetime(df['TIME'], format='%H:%M:%S')

df['hour'] = df['TIME'].dt.hour
print (df)
                 TIME  hour
0 1900-01-01 09:33:07     9
1 1900-01-01 09:41:09     9
like image 84
jezrael Avatar answered Dec 22 '22 15:12

jezrael