Pandas의 값 범위를 기반으로 DataFrame 행을 어떻게 필터링합니까?

Mary-Kate Olsen
풀어 주다: 2024-11-14 14:43:02
원래의
721명이 탐색했습니다.

How Do I Filter DataFrame Rows Based on a Value Range in Pandas?

Filtering DataFrame Rows by Value Range

When manipulating dataframes, it's often necessary to select rows based on specific criteria. One such scenario is selecting rows within a specified value range. While using loops can achieve this, a more efficient and vectorized approach is preferred.

In the given code:

df = df[99 <= df['closing_price'] <= 101]
로그인 후 복사

An error occurs due to ambiguous truth values in the comparison. To remedy this, use the between() method from the Pandas Series class:

Solution:

df = df[df['closing_price'].between(99, 101)]
로그인 후 복사

The between() method takes two values as parameters, representing the lower and upper bounds of the range. It returns a Boolean Series with True for rows that meet the criteria and False otherwise. This Series can then be used to filter the dataframe to include only the desired rows.

This vectorized solution avoids the use of loops, enhancing performance and conciseness. Moreover, it is more intuitive to read and maintain.

위 내용은 Pandas의 값 범위를 기반으로 DataFrame 행을 어떻게 필터링합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
저자별 최신 기사
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿