Pandas Series/DataFrame의 데이터를 조회하는 방법으로는 iloc와 loc가 사용됩니다.
iloc는 정수-위치기반 인덱싱을 사용하는 방법이고 loc는 Series에 부여된 index 또는 DataFrame에 부여된 index와 column값을 통해서 데이터를 조회하는 방법입니다.
Series와 DataFrame에서 iloc와 loc 사용 방법과 결과값을 비교해 보겠습니다.
Series
Single index
Slicing
iloc에서는 1:3을 slicing 하면 1이상 3미만을 뜻하지만 직접 Column 명을 지정해주는 loc의 경우 "나"이상 "라"이하을 뜻합니다.
Fancy Indexing
Boolean Indexing
DataFrame
Single Index
Slicing
Fancy Indexing
Boolean Indexing
혼합 Indexing
끝
'python' 카테고리의 다른 글
[WeRun] Excel Concatenate 함수 파이썬(Python)으로 사용하기 (0) | 2022.09.09 |
---|---|
[WeRun]Pycharm 설치 및 환경설정 방법 (0) | 2022.08.26 |
Python Pandas 자료구조 DataFrame 알아보기 (0) | 2022.08.17 |
Python Pandas 자료구조 Series 알아보기 (0) | 2022.08.15 |
Python Pandas DataFrame.value_counts()(DataFrame 값 개수 세기) (0) | 2022.08.11 |