📜  熊猫分析 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:23.435000             🧑  作者: Mango

代码示例4
import numpy as np
import pandas as pd
from pandas_profiling import ProfileReport
profile = ProfileReport(train, title="Pandas Profiling Report")
profile.to_widgets()
profile.to_file("your_report.html")