A.3.10 중복된 데이터 지우기: drop_duplicates
특정 컬럼 속 데이터가 중복돼 있고, 중복되지 않은 데이터만 필요하다면 drop_duplicates 함수를 사용한다.
df4[ 'variable' ].drop_duplicates( )
참고
또는
df4[ 'variable' ].drop_duplicates( )
결과
0 a 6 b 12 c
특정 컬럼 속 데이터가 중복돼 있고, 중복되지 않은 데이터만 필요하다면 drop_duplicates 함수를 사용한다.
df4[ 'variable' ].drop_duplicates( )
참고
또는
df4[ 'variable' ].drop_duplicates( )
결과
0 a 6 b 12 c