본문 바로가기
파이썬. 데이터분석/Pandas

SettingWithCopyWarning 알람 원인, 끄기

by 한국수달보호협회장 2024. 9. 28.

 

 

py:1: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy

 

 

https://blog.naver.com/PostView.nhn?blogId=wideeyed&logNo=221817400937

 

[Pandas] SettingWithCopy Warning or Error 해결방법

Pandas(판다스, 팬더스)에서 원본 Dataframe의 일부를 복사하거나 인덱싱 후 값을 수정할 때 발생할 수 ...

blog.naver.com

 

 

이거 입력해주면 알람꺼짐

pd.set_option('mode.chained_assignment', None)