Home / Questions / Other Missing values fill कैसे करें? — error आने पर developer क्या करे? Other 0 Views Verified Missing values fill कैसे करें? — error आने पर developer क्या करे? #python #pandas #numpy #data-analysis Sarkari Result QA Bank Editorially reviewed exam information Share
Verified df = df.replace_null(0) df = df.replace_null(0) Additional Explanation यह विकल्प सही समाधान नहीं है।
Verified Correct Answer df = df.fillna(0) df = df.fillna(0) Additional Explanation fillna() missing values को specified value से भरता है। पहले traceback की exact line और input value check करें।
Verified df = df.fill_nulls(0) df = df.fill_nulls(0) Additional Explanation यह विकल्प सही समाधान नहीं है।