Home [Python] Pandas에서 NaN인 로우 가져오기
Post
Cancel

[Python] Pandas에서 NaN인 로우 가져오기

1
df[df['floor'].isna()]

데이터 cleansing 을 할때는

1
2
3
4
5
def cleansing(df: pd.DataFrame) -> pd.DataFrame:
    print('*** NaN ***')
    print(df.isna().sum())
    print('*** null ***')
    print(df.isnull().sum())
This post is licensed under CC BY 4.0 by the author.

[Python] JupyterLab 한글 깨짐, 설정하는 방법

[Python] 공공데이터 부동산 실거래 가져오기