I am trying to get a specific value in a dataframe that is composed of two columns, Date and Close. what I need is a close value of a specific date.
As a first step, I tried to find a specific date in the date column using the code below, but I keeps failing.
df[df['Date'].isin([specific_date])]
I can't come up with any better idea than this. Please help me.