Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- pandas
- LIST
- Selenium
- 오류
- Numpy
- Linux
- C
- ubuntu
- 기타 연주
- mysql
- OpenCV
- JSON
- Visual Studio
- SSH
- pip
- 채보
- 핑거스타일
- 프로그래머스
- label
- pytorch
- paramiko
- windows forms
- error
- C++
- Python
- YOLO
- VS Code
- C#
- 명령어
- Docker
Archives
- Today
- Total
기계는 거짓말하지 않는다
Python Pandas 정렬 본문
Series
import pandas as pd
fruit = pd.Series([2500, 3800, 1200, 6000], index=['apple', 'banana', 'peer', 'cherry'])
print(fruit)
print('=' * 20)
print(fruit.sort_values(ascending=False))
print('-' * 20)
print(fruit.sort_index())
values, index 정렬 가능, axis(축)설정과 ascending(오름차순 or 내림차순)설정도 가능하다.
DataFrame
동일하게 axis, ascending 설정 가능
index 정렬
fruitData = {'fruitName':['peer','banana','apple','cherry'],
'fruitPrice':[2500,3800,6000,1200],
'num':[10,5,3,8]}
fruitFrame = pd.DataFrame(fruitData, index=fruitData['fruitName'], columns=['num', 'fruitPrice'])
print(fruitFrame)
print('=' * 30)
# index 정렬
print(fruitFrame.sort_index())
print('-' * 30)
print(fruitFrame.sort_index(axis=1)) # 가로 값 비교, columns
values 정렬
fruitData = {'fruitName':['peer','banana','apple','cherry'],
'fruitPrice':[2500,3800,6000,1200],
'num':[10,5,3,8]}
fruitFrame = pd.DataFrame(fruitData, index=fruitData['fruitName'], columns=['num', 'fruitPrice'])
print(fruitFrame)
print('=' * 30)
# values 정렬
print(fruitFrame.sort_values(by=['fruitPrice']))
print('-' * 30)
tempData = pd.DataFrame([[7, 2500]], index=['grape'], columns=['num', 'fruitPrice'])
fruitFrame = fruitFrame.append(tempData)
print(fruitFrame.sort_values(by=['fruitPrice', 'num'])) # price 같으면 다음 정렬 기준을 num으로
'Python' 카테고리의 다른 글
Python UnicodeDecodeError (0) | 2021.07.10 |
---|---|
Python Pandas 기본통계 (0) | 2021.07.10 |
Python Pandas 기본 연산 (0) | 2021.07.03 |
Python Pandas(Panel Data) (0) | 2021.07.01 |
Python Direct kernel connection broken 에러 (0) | 2021.06.30 |
Comments