Pandas에서 요청된 레이블의 정수 위치를 얻으려면 index.get_loc()을 사용하세요. 방법. 먼저 필요한 라이브러리를 가져옵니다 -
import pandas as pd
Pandas 인덱스 객체 생성 -
index = pd.Index(list('pqrstuvwxyz'))
판다 인덱스 표시 -
print("Pandas Index...\n",index)
주어진 인덱스에서 정수 위치 가져오기 -
print("\nDisplay integer location from given index...\n",index.get_loc('w')) print("\nDisplay integer location from given index...\n",index.get_loc('z'))
예시
다음은 코드입니다 -
import pandas as pd # create Pandas index object index = pd.Index(list('pqrstuvwxyz')) # Display the Pandas index print("Pandas Index...\n",index) # Return the number of elements in the Index print("\nNumber of elements in the index...\n",index.size) # get integer location from the given index print("\nDisplay integer location from given index...\n",index.get_loc('w')) print("\nDisplay integer location from given index...\n",index.get_loc('z'))
출력
이것은 다음과 같은 출력을 생성합니다 -
Pandas Index... Index(['p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z'], dtype='object') Number of elements in the index... 11 Display integer location from given index... 7 Display integer location from given index... 10