1

When using the default example for displaying a report:

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}})

the correlations heatmaps are not shown.

How can I investigate the warnings from the progress bar?

enter image description here

Nilanka Manoj
  • 3,527
  • 4
  • 17
  • 48
Createdd
  • 865
  • 11
  • 15
  • What warnings are you referring to? – AMC Mar 18 '20 at 19:30
  • As you can see in the screenshot the progress bar creates the ouput with "warnings [correlation]". This is exactly my question. Where can I see those warnings in detail – Createdd Mar 19 '20 at 09:07

1 Answers1

0

The progress bar keeps you informed on the calculations that pandas-profiling does.

To view the output, you have several option. The easiest way to view them is by generating a HTML report:

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}})
profile.to_file("report.html", silent=False)
Simon
  • 5,464
  • 6
  • 49
  • 85