python 2개의 dataframe 이 같은지 확인 (Check if A and B are the same, dataframe 비교)


dataframe A_df와 dataframe B_df가 같은지 확인

A_df.equals(B_df)

return : 같다면 True, 다르다면 False (same: True, different:False)


참고 : https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.equals.html

0 댓글