Skip to content
Advertisement

How do I check if a date in a date column is between two dates in different columns using pandas?

I’m trying to figure out how to check if a date in one column is between the dates from two separate columns. I checked Check if a date column is in a range of dates – pandas but it wasn’t quite the same problem.

I use the unique identifier of each row to know if that row’s date needs to be checked.

If the date is between the two dates, i’d like the unique identifier of that row to be appeneded to a list.

I’m using ‘index’ in my example as the unique identifier.

JavaScript

When I run the above code, I get the following error that I haven’t been able to get past.

JavaScript

I’m not sure what about the dates are ambiguous. I tried adding .values to the row['start_date'] and row['end_date'] and ‘row[‘check_date’]` and that did not help.

Does anyone know how to do this or what my issue is?

Advertisement

Answer

use between after you convert your columns to datetime

JavaScript

update

JavaScript

Or assign the list back to the frame

JavaScript

or dict comprehension instead of list

JavaScript
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement