I have a dataframe with a double index (day, time) and would like to create a new column 'Holiday' equal to one if the index day belongs to a list of holidays.
My list of holidays of type DatetimeIndex:
holidays = ['2017-09-11', '2017-12-24']
My original dataframe:
Visitor
Date Time
2017-09-11 4:45 0
5:00 1
5:15 26
....
2017-09-12 4:45 0
5:00 1
5:15 26
....
What I would like to have:
Visitor Holiday
Date Time
2017-09-11 4:45 0 1
5:00 1 1
5:15 26 1
....
2017-09-12 4:45 0 0
5:00 1 0
5:15 26 0
....
Here is what I tried based on this previous answer:
df['Holiday'] = int(df.index.get_level_values(0) in holidays == True)
However my column 'Holiday' always has the value 0...
Thanks in advance!
Use
isin
by taking the date level fromget_level_values
and useastype(int)
to convert boolean to integer.If you want a copy instead of modifying
df