数据质量缺失值(Pandas)

2024-10-02 08:19:53 发布

您现在位置:Python中文网/ 问答频道 /正文

我在做一个数据质量项目。我试图使用pandas profiling profileReport生成数据质量报告,但当我验证报告时,它会说我没有缺少的值,而我有空单元格。 或者你还有其他建议吗 Result

df = pd.read_excel('D:/SDAD/PFE/bi_bpcustomer.xls')
print(df.dtypes)
reportCl=ProfileReport(df)
reportCl.to_file(output_file='rapportClient.html')

以下是我的xls文件的一部分,其中显示了丢失的单元格: xls file


Tags: 数据项目pandasdfread报告质量result

热门问题