Pandas Drop Duplicate pero mantén la fecha más reciente

df.sort_values('DATE_CHANGED').drop_duplicates('STATION_ID',keep='last')
Rich Ray