To sort the DataFrame along the column 'Incident Zip' one cannot use `.sort()` method anymore, but must use `.sort_values()`: `requests[is_far][['Incident Zip', 'Descriptor', 'City']].sort_values(by='Incident Zip')`