Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

Python Pandas에서 두 인덱스 값 사이의 DataFrame 행 선택

<시간/>

Pandas DataFrame을 슬라이스하여 두 인덱스 값 사이의 행을 선택할 수 있습니다. 예를 들어 어떻게 수행되는지 살펴보겠습니다.

단계

  • 크기가 변경 가능한 2차원 테이블 형식 데이터 df 생성 .
  • 입력 DataFrame, df 인쇄 .
  • 인덱스 하한에 대한 변수를 초기화합니다.
  • 색인의 상한선에 대한 다른 변수를 초기화합니다.
  • df[index_lower_limit:index_upper_limit] 사용 범위 인덱스의 DataFrame을 인쇄합니다.

예시

import pandas as pd

df = pd.DataFrame(
   {
      "x": [5, 2, 7, 0],
      "y": [4, 7, 5, 1],
      "z": [9, 3, 5, 1]
   }
)
print "Input DataFrame is:\n", df

index_lower_limit = 1
index_upper_limit = 3

print("DataFrame between two index values:\n",
df[index_lower_limit: index_upper_limit])

출력

Input DataFrame is:
  x y z
0 5 4 9
1 2 7 3
2 7 5 5
3 0 1 1

DataFrame between two index values:
  x y z
1 2 7 3
2 7 5 5