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 |
Tags
- highlight.js
- line number
- 금융결제원
- CSS
- Python
- 티스토리
- freeze_support
- 구현
- pycharm
- 금결원
- OpenAPI+
- idxmin
- HTML
- QueueHandler
- idxmax
- 파이썬
- 우리FIS
- Tistory
- 의사 클래스
- 필기
- multiprocessing
- 퀀트
- 웹크롤링
- 코드블럭
- 멀티 로그인
- pywinauto
- DataFrame
- 하이라이트
- Windows
- 진행 상황
Archives
- Today
- Total
목록idxmin (1)
맨땅에 헤딩하는 사람
Python DataFrame 최대 scalar 값의 index, column 구하기
pandas는 idxmax(), idxmin()이란 method를 제공한다. parameter axis에 따라(column 혹은 row 기준에 따라) 최대값의 index, column Series를 반환하는 기능을 가진다. 많이 사용하진 않겠지만 DataFrame의 2차원 데이터 중 가장 큰 스칼라 값 하나의 index와 column이 궁금한 경우가 있다. 이는 간단하게 idxmax()를 두 번 적용하는 것으로 해결할 수 있다. 아래 예제 코드를 보자. >>> import pandas as pd >>> import numpy as np >>> df = pd.DataFrame(np.array([[5,2,4],[6,1,5],[7,1,3]]), ... columns=['a', 'b', 'c']) >>> df ..
파이썬/이론
2020. 8. 31. 12:56