使用默认示例显示报告时:
df = pd.DataFrame(
np.random.rand(100, 5),
columns=['a', 'b', 'c', 'd', 'e']
)
profile = ProfileReport(df, title='Pandas Profiling Report', html={
'style': {'full_width': True}})
未显示相关性热图。
如何调查进度条中的警告?