iat를 사용합니다. 속성은 정수 위치로 행/열 쌍의 단일 값에 액세스하는 데 사용되기 때문에 마지막 요소에 액세스합니다.
먼저 필요한 Pandas 라이브러리를 가져오겠습니다 -
import pandas as pd
숫자로 판다 시리즈 만들기 -
data = pd.Series([10, 20, 5, 65, 75, 85, 30, 100])
이제 iat() −
를 사용하여 마지막 요소를 가져옵니다.data.iat[-1]
예
다음은 코드입니다 -
import pandas as pd # pandas series data = pd.Series([10, 20, 5, 65, 75, 85, 30, 100]) print"Series...\n",data # get the first element print"The first element in the series = ", data.iat[0] # get the last element print"The last element in the series = ", data.iat[-1]
출력
이것은 다음과 같은 출력을 생성합니다 -
Series... 0 10 1 20 2 5 3 65 4 75 5 85 6 30 7 100 dtype: int64 The first element in the series = 10 The last element in the series = 100