汇总数据集ydata_profiling ProfileReport

Summarize Dataset ydata_profiling ProfileReport

提问人:Breno.Oliveira 提问时间:11/16/2023 更新时间:11/16/2023 访问量:28

问:

我尝试使用 CustomTkinter + Pandas + ydata ProfileReport 来制作一个简单的系统,该系统可以加载数据集、使用 pandas 进行转换并使用 ydata_profiling 制作 Profile Report。

该程序在所有功能上都运行良好,但它没有使数据集夏季化。 我有这个功能:

    def report(self,data):
        report = ProfileReport(dados,title='Relatório Inicial')
        report.to_file('./ReportCriado.html')

此功能接收如下数据集:

TAG1 time 0 11.8 2023-10-01T12:41:30.933Z 1 12.3 2023-10-01T12:46:30.933Z ... ... ... 7703 13.5 2023-10-31T13:33:51.155Z 7704 13.5 2023-10-31T13:38:51.155Z

但是,它不会创建报告。在我的提示下,它返回:这是RAM问题吗?IDE问题? 谢谢你们,伙计们!Summarize dataset: 14%|██████████████████████ | 1/7 [00:00<00:00, 9.84it/s, Describe variable:TAG1]

我目前正在使用 VSCode,但它有时会运行,有时不会。 当我在最简单的应用程序上运行 ProfileReport 时,它运行良好。

但是,在最高的应用程序上运行则不然

python pandas tkinter profiling pandas-profiling

评论


答: 暂无答案