我正在使用 pandas-profiling=2.8.0 并且我生成了一个 HTML 报告,其中概述部分显示了 2 个重复项,如下所示
但是我的 HTML 报告标题中缺少“重复行”选项/部分。
但在文档页面上的共享示例中:https ://pandas-profiling.github.io/pandas-profiling/docs/master/rtd/pages/examples.html
您可以在官方示例报告中看到“重复行”。
示例(人口普查收入报告):https ://pandas-profiling.github.io/pandas-profiling/examples/master/census/census_report.html
谁能告诉我的代码中缺少什么,因为我在 HMTL 报告标题中没有得到“重复的行”?
from pandas_profiling import ProfileReport
df = pd.read_csv('items.csv', sep='|')
profile = df.profile_report(title='Data Profiling Report')
profile = ProfileReport(df)
profile.to_file(output_file='txt_data_profile.html')