早上好
我有以下数据框:
print(df)
Company ... Sales
0 Medi ltd. ... 4.16000
1 Pia ltd. ... 2.59907
[26958 rows x 15 columns]
但是只要我跑步:
import pandas_profiling as pp
pp.ProfileReport(df)
它只输出,没有图或帧:
Out[92]: <pandas_profiling.ProfileReport at 0x1131e0668>
我尝试生成样本df,但是它也不起作用:
print(sample)
Col1 Col2
Row1 1 2
Row2 3 4
我该如何解决这个问题?
答案 0 :(得分:0)
答案供以后参考:
这不是pandas-profiling
的特定问题。 Spyder似乎在显示HTML方面存在问题,可以在此讨论中找到更多信息:
https://github.com/spyder-ide/spyder/issues/4582
一种快速的解决方法是将报告保存到文件中。您可以这样做:
report = pp.ProfileReport(df)
report.to_file('profile_report.html')