우노
[Python] Pandas DataFrame 행,열 삭제 본문
행 삭제
drop()
axis가 '0' 이라면 행 삭제, '1' 이라면 열 삭제 입니다. (default : 0)
# index가 0인 행만 삭제 df = df.drop(index=0, axis=0) # index가 0,1,2인 행 삭제 df = df.drop(index=[0, 1, 2], axis=0)
조건문 사용
# 열 값이 1024이 아닌 행(index)만 저장 df = df[df['col'] != 1024]
열 삭제
drop()
# 'col1', 'col2' 열 삭제 df = df.drop(columns=['col1', 'col2'], axis=1)
'Language > Python' 카테고리의 다른 글
[Python] Matplotlib 3차원 산점도 그리기 (4) | 2020.07.29 |
---|---|
[Python] Matplotlib 기초 (0) | 2020.07.29 |
[Python] Numpy와 Pandas를 사용한 데이터셋 생성 (0) | 2020.07.25 |
[Python] Pandas 개념 및 DataFrame 생성 방법 (1) | 2020.07.24 |
[Python] Numpy 개념 및 배열 생성 방법 (0) | 2020.07.24 |
Comments