Extract hour from timestamp using python

I have a dataframe df_energy2

df_energy2.info()
<class 'pandas.core.frame.DataFrame'>
RangeIndex: 29974 entries, 0 to 29973
Data columns (total 4 columns):
TIMESTAMP        29974 non-null datetime64[ns]
P_ACT_KW         29974 non-null int64
PERIODE_TARIF    29974 non-null object
P_SOUSCR         29974 non-null int64
dtypes: datetime64[ns](1), int64(2), object(1)
memory usage: 936.8+ KB

with this structure:

df_energy2.head()

TIMESTAMP P_ACT_KW PERIODE_TARIF P_SOUSCR
2016-01-01 00:00:00 116 HC 250 
2016-01-01 00:10:00 121 HC 250

Is there any python function that can extract an hour from TIMESTAMP?

Yours faithfully

+4
source share
2 answers

I think you need dt.hour:

print (df.TIMESTAMP.dt.hour)
0    0
1    0
Name: TIMESTAMP, dtype: int64

df['hours'] = df.TIMESTAMP.dt.hour
print (df)
            TIMESTAMP  P_ACT_KW PERIODE_TARIF  P_SOUSCR  hours
0 2016-01-01 00:00:00       116            HC       250      0
1 2016-01-01 00:10:00       121            HC       250      0
+2
source

Given your details:

df_energy2.head()

TIMESTAMP P_ACT_KW PERIODE_TARIF P_SOUSCR
2016-01-01 00:00:00 116 HC 250 
2016-01-01 00:10:00 121 HC 250

You have a timestamp as an index. To retrieve a clock from a timestamp, where you have an index in a data frame:

  hours = df_energy2.index.hour

Edit : Yes, Jezerael, you're right. Assuming what he said: pandas dataframe has a property for this, i.e. dt:

<dataframe>.<ts_column>.dt.hour

An example in your context is a date column TIMESTAMP

df.TIMESTAMP.dt.hour

- Pandas, dataframe datetime64,

0

Source: https://habr.com/ru/post/1653915/


All Articles