I am trying to create a new columns based on two other column values with one column being datetime. Below is an example of the data. I would like to get the result shown in the second table.
| Site Name | Date | 
|---|---|
| Westwood | 2022-11-15 | 
| Westwood | 2022-11-16 | 
| Northend | 2021-08-04 | 
| Northend | 2021-08-05 | 
| Northend | 2021-08-06 | 
I'm hoping to get the below result.
| Site Name | Date | Active_Ind | 
|---|---|---|
| Westwood | 2022-11-15 | 0 | 
| Westwood | 2022-11-16 | 0 | 
| Northend | 2021-08-06 | 0 | 
| Northend | 2021-08-05 | 1 | 
| Northend | 2021-08-04 | 1 | 
Here is the what I have tried so far but I keep getting the error '<' not supported between instances of 'Timestamp' and 'int'
def conditions(df):
    if (df['Site Name']=='Northend') & (df['Date'] < 2021-08-06):
        return 1
    else:
        return 0
df['Active_Ind']=df.apply(conditions,axis=1)