반응형
데이터프레임에서 시리즈를 추출할 때 for문과 같은 반복문에서는 속도가 생명이다.
loc보다 더 빠르게 탐색할 수 있는 at이 있다.
[Series 탐색 방법]
1. 가장 느린 [][]
df['name'][index]
2. 좀 더 빠른 loc
df.loc[index, 'name']
3. 가장 빠른 at
df.at[index, 'name']
Reference :
- https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.Series.at.html#pandas.Series.at
반응형
'Skills > Python' 카테고리의 다른 글
[Python] 파이썬에서 sql데이터 불러오기 (0) | 2021.11.04 |
---|---|
[Python] 결측치 다루기 (기초) (0) | 2021.11.04 |
[Python] 최댓값에 해당되는 인덱스 찾기 (0) | 2021.11.04 |
[Python] 빠른 행/열 추출 take() 메소드 (0) | 2021.11.04 |
[Python] 데이터 재구조화 (0) | 2021.11.04 |