판다스(Pandas)의 데이터 프레임의 메서드 중 loc와 iloc를 정리해봤다.
먼저, 각 메서드의 공식 정의는 다음과 같다.
loc : Access a group of rows and columns by label(s) or a boolean array.
iloc : Purely integer-location based indexing for selection by position.
정의를 통해 기억해야 하는 가장 중요한 차이는 loc는 라벨(lable), iloc는 정수(index) 기반 이라는 것이다.
각 메서드의 사용 방법은 샘플코드를 통해 알아보자.
<참고>
loc : https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.loc.html#pandas.DataFrame.loc
iloc : https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.iloc.html#pandas.DataFrame.iloc
샘플코드 : ChatGPT 3.5
'Pandas' 카테고리의 다른 글
메서드(method) 정리 (0) | 2024.01.08 |
---|