I'm currently trying to write a script that does a specific action on a certain day. So for example, if today is the 6/30/2019 and in my dataframe there is a 6/30/2019 entry, xyz proceeds to happen. However, I am having troubles comparing the date from a dataframe to a DateTime date. Here's how I created the dataframe
now = datetime.datetime.now()Test1 = pd.read_excel(r"some path")
Heres what the output looks like when I print the dataframe.
symbol ... phase
0 MDCO ... Phase 2
1 FTSV ... Phase 1/2
2 NVO ... Phase 2
3 PFE ... PDUFA priority review
4 ATRA ... Phase 1
Heres' how the 'event_date' column prints out
0 05/18/2019
1 06/30/2019
2 06/30/2019
3 06/11/2019
4 06/29/2019
So I've tried a few things I've seen in other threads. I've tried:
if (Test1['event_date'] == now):print('True')
That returns
ValueError: The truth value of a Series is ambiguous. Use a.empty, a.bool(), a.item(), a.any() or a.all().
I've tried reformatting my the data with:
column_A = datetime.strptime(Test1['event_date'], '%m %d %y').date()
which returns this
TypeError: strptime() argument 1 must be str, not Series
I've tried this
if any(Test1.loc(Test1['event_date'])) == now:
and that returned this
TypeError: 'Series' objects are mutable, thus they cannot be hashed
I don't know why python is telling me the str is a dataframe, I'm assuming it has something to do with how python exports data from an excel sheet. I'm not sure how to fix this.
I simply want python to check if any of the rows have the same "event_date"
value as the current date and return the index or return a boolean to be used in a loop.