[python] df.drop if exists
2022. 10. 13. 09:02ㆍ파이썬
[python] df.drop if exists
hh = pd.DataFrame([{"1":1,"2":3},{"1":1,"2":3},{"1":1,"2":3},{"1":1,"2":3}])
ii = pd.DataFrame([{"1":1,"2":3},{"1":1,"2":3},{"1":1,"2":3},{"1":1,"2":3}])
test = pd.DataFrame([{"1":1,"2":3},{"1":1,"2":3}])
hh.drop(columns=["3"])
오류발생!
hh.drop(columns=["3"], errors='ignore')
## output
1 2
0 1 3
1 1 3
2 1 3
3 1 3
정상 진행!
'파이썬' 카테고리의 다른 글
[python] DatetimeIndex 값 추가하기 및 date관련 함수 (0) | 2022.11.21 |
---|---|
[Python] dataframe 리스트 안에있는 조건 검색 (0) | 2022.11.08 |
[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 |
[Python] conda 가상환경 관리 (0) | 2022.09.18 |