# cleaning filters def filter_ngr(df): exclude_ngrs = ['NZ02553847', 'SE213515', 'NT05399374', 'NT252675908'] return df[~df['NGR'].isin(exclude_ngrs)] def extract_eid_information(df): # Logic to extract information from 'EID' column print('foo')