[파이썬, Python] Pandas.DataFrame 행/열 제거 (drop)
DataFrame.drop(labels=None, axis=0, index=None, columns=None, inplace=False, errors='raise') option - labels : 제거할 index or column 입력 - axis : [0,1] 중 선택 axis=0 인 경우 labels를 index로 인식 axis=1 인 경우 labels를 column으로 인식 - index : 삭제할 index 리스트를 입력합니다. - columns : 삭제할 column 리스트를 입력합니다. - inplace : [True, False] 중 선택 inplace=True 인 경우, 원본을 변경하겠다. inplace=False 인 경우, 원본은 그대로 두고 변경된 데이터를 반환하겠다. - error..