본문으로 바로가기

[Python] loc보다 빠른 탐색이 가능한 at

category Skills/Python 2021. 11. 4. 15:04
반응형

데이터프레임에서 시리즈를 추출할 때 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

 

반응형