■ DataFrame 클래스의 sort_values 메소드에서 by 인자를 사용해 특정 컬럼을 기준으로 정렬하는 방법을 보여준다.
▶ main.py
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
import pandas as pd dataFrame1 = pd.read_csv("titanic.csv") dataFrame2 = dataFrame1.sort_values(by = "Age") print(dataFrame2.head()) """ PassengerId Survived Pclass Name Sex Age SibSp Parch Ticket Fare Cabin Embarked 803 804 1 3 Thomas, Master Assad Alexander male 0.42 0 1 2625 8.5167 NaN C 755 756 1 2 Hamalainen, Master Viljo male 0.67 1 1 250649 14.5000 NaN S 469 470 1 3 Baclini, Miss Helene Barbara female 0.75 2 1 2666 19.2583 NaN C 644 645 1 3 Baclini, Miss Eugenie female 0.75 2 1 2666 19.2583 NaN C 78 79 1 2 Caldwell, Master Alden Gates male 0.83 0 2 248738 29.0000 NaN S """ |
▶ requirements.txt
1 2 3 4 5 6 7 8 |
numpy==2.1.2 pandas==2.2.3 python-dateutil==2.9.0.post0 pytz==2024.2 six==1.16.0 tzdata==2024.2 |
※ pip install pandas 명령을 실행했다.