[Python] dataframe 리스트 안에있는 조건 검색
2022. 11. 8. 15:28ㆍ파이썬
[Python] dataframe 리스트 안에있는 조건 검색
In [1]: df = pd.DataFrame({'A': [5,6,3,4], 'B': [1,2,3,5]})
In [2]: df
Out[2]:
A B
0 5 1
1 6 2
2 3 3
3 4 5
In [3]: df[df['A'].isin([3, 6])]
Out[3]:
A B
1 6 2
2 3 3
반대조건
In [4]: df[~df['A'].isin([3, 6])]
Out[4]:
A B
0 5 1
3 4 5
'파이썬' 카테고리의 다른 글
[Python] Dataframe resample specific(특정) column concat(이어붙이기) (0) | 2022.11.22 |
---|---|
[python] DatetimeIndex 값 추가하기 및 date관련 함수 (0) | 2022.11.21 |
[python] df.drop if exists (0) | 2022.10.13 |
[Python] json to dataframe (+ chain key) (0) | 2022.09.20 |
[Python] If using all scalar values, you must pass an index (1) | 2022.09.20 |