
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
아래와 같은 메시지에 대해 어떻게 대응해야 하는지 알려주세요.
코드는 정상적으로 실행이 되어 학습에는 문제가 없었습니다.
The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
df = df.append(doc,ignore_index=True)
append 대신에 concat 를 사용하라는 것 같은데요.
어떻게 사용하라는 것인지, 사용방법은 어디서 찾을 수 있을까요?
작성한 코드 및 에러 메세지
The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
df = df.append(doc,ignore_index=True)
