작성
·
180
답변 2
1
안녕하세요?
결론 부터 말씀드리면 axis=1과 axis='columns' 중 아무거나 써도 상관없습니다.
관련 아래 스펙에 보면,
https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.drop.html
관련 아래 스펙에 보면, 명시적으로 쓰인 컬럼에서 drop 내역을 지정해 줄 경우 1또는 'columns'를 사용하라 했습니다. 인덱스를 사용할 경우는 0을 쓰고요. 저는 교육목적 상 보시기 좋게 'columns'을 썼습니다.
도움 되시길 바랍니다.
axis : {0 or ‘index’, 1 or ‘columns’}, default 0
Whether to drop labels from the index (0 or ‘index’) or columns (1 or ‘columns’).
0