반응형
dataFrame에서 특정 column만을 제외하고싶으면 아래와 같이 코드를 구현하면 된다.
df.loc[:, [col for col in df.columns if col != "제외할 칼럼"]]
<example>
df
df.loc[:, [col for col in df.columns if col != 'temp_group']]
반응형
dataFrame에서 특정 column만을 제외하고싶으면 아래와 같이 코드를 구현하면 된다.
df.loc[:, [col for col in df.columns if col != "제외할 칼럼"]]
<example>
df
df.loc[:, [col for col in df.columns if col != 'temp_group']]