dataprep icon indicating copy to clipboard operation
dataprep copied to clipboard

eda: full na column is not correct in report

Open jinglinpeng opened this issue 2 years ago • 0 comments

Describe the bug The col1 should be na values, but it's missing value is zero in the Variables section.

image

To Reproduce

from dataprep.eda import create_report
import pandas as pd
import numpy as np
df = pd.DataFrame()
df["col1"] = [np.nan] * 10
create_report(df).show_browser()

jinglinpeng avatar Oct 16 '21 02:10 jinglinpeng