Get the App
SLTechnology News&Howtos  ›  Internet Technology  › 

How to customize text sorting in Python

Shulou Source: shulou.com Published: 2022-06-01 20:13:11 09月25日 Update

This article introduces the knowledge of "how to customize text sorting in Python". In the operation of actual cases, many people will encounter such a dilemma, so let the editor lead you to learn how to deal with these situations. I hope you can read it carefully and be able to achieve something!

Data introduction

There are three columns of data, sorted by "junior college", "undergraduate" and "graduate" for the field of "academic qualifications". For different academic qualifications, they are arranged according to the descending order of "basic salary".

Excel implements ① to select all data

② Click start-> sort and filter-> Custom sort ③ when the following interface appears, complete the operation ④ in the figure, when the following interface appears, complete the operation ⑤ in the figure, when the following interface appears, complete the operation ⑥ effect in the figure as follows: Python to implement import pandas as pd

# customize a sequence

X = ['postgraduate', 'undergraduate', 'junior college']

# read data

Df = pd.read_excel ("Test .xlsx")

# set the "academic qualifications" column to the category data type

Df ["academic qualifications"] = df ["academic qualifications"] .astype ("category")

# reorder_categories means to reorder the categories specified in the x sequence

# inplace=True means to reorder existing categories

Df ["academic qualifications"] .cat.reorder_categories (x, inplace=True)

# then use the way of multi-column sorting, arrange the "academic qualifications" column in the designated x order, and arrange the "basic salary" column in descending order

Df.sort_values (by= ["academic qualifications", "basic salary"], inplace=True,ascending= [True,False])

Df

Final result:

So much for the content of "how to customize text sorting in Python". Thank you for reading. If you want to know more about the industry, you can follow the website, the editor will output more high-quality practical articles for you!

Tags: Sort education data base salary salary interface picture middle content college sequence effect more undergraduate knowledge graduate category research different practical Apple Docker Huawei Linux macOS MariaDB Microsoft MySQL NVidia OPPO Reno NVidia Redmi Xiaomi vpn Shulou Information