본문 바로가기
기술스택을 쌓아보자/Python

[Python/pandas] 두 데이터 프레임이 동일한지 확인하기 (identify two datafame is equivalent)

by 소리331 2023. 7. 14.
반응형
from pandas.testing import assert_frame_equal

assert_frame_equal(df_a, df_b)

옵션도 유연하게 적용할 수 있다. 

check_dtype=True, 

check_index_type='equiv', 

check_column_type='equiv', 

check_frame_type=True,

check_names=True, 

by_blocks=False, 

check_exact=False, 

check_datetimelike_compat=False, 

check_categorical=True, 

check_like=False, 

check_freq=True, 

check_flags=True

참고자료 

 

 

pandas.testing.assert_frame_equal — pandas 2.0.3 documentation

next pandas.testing.assert_series_equal

pandas.pydata.org

 

반응형

댓글