Let's say I have two dates in ISO format:
startDate = '2005-01-20'
endDate = '2010-08-20'
I also have a column in my dataframe called eventDate, which is a string (but in ISO format).
How can I create a new column called validDate that returns either 'Yes' or 'No' if the eventDate is in between those two dates?