I'm Using pandas-profiling in a dataset that contains 140 columns.
This is my code:
df = pd.read_parquet("ConsultationForm.parquet", columns= sorted(columnNames),engine="pyarrow")
df = df.fillna(value=np.nan)
df.head()
profile = ProfileReport(df, title="Pandas Profiling Report", explorative=True, minimal=True)
profile.to_file('ConsultationForm_profiling3.html')
but I'm getting this error:
TypeError: <lambda>() argument after * must be an iterable, not bool
How Could I Fix it?
Thanks
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…