I have a forecast date column and a completed date column in a pandas dataframe. I want to add a column that shows if the completed date was greater than the forecast date, i.e. late/not late.
Beginner, so I've got this bit
Late_Not_Late = np.where(df["Forecast_Date"] > df("Completed_Date"], True, False)
Am struggling with the other lines I need.