I already tried hiding the correlations, missing_values and sample values. Now i'm trying to hide the interactions but i am not able to find the logic.
Asked
Active
Viewed 869 times
1 Answers
1
Version 2.4+ offers a minimal mode that you can activate via a flag parameter:
Version 2.4 introduces minimal mode. This is a default configuration that disables expensive computations (such as correlations and dynamic binning).
profile = ProfileReport(large_dataset, minimal=True)
profile.to_file("output.html")
Maybe this fits your needs.
EDIT: You can also configure the output html more fine-grained via configuration options or by loading a written configuration file
This should do the trick, if i understand your question correctly:
r = ProfileReport(data_set, interactions=None)

PStein
- 38
- 5
-
Yes..its working to hide all expensive computations..but i need to hide only a specific computation – vijay Oct 09 '20 at 10:07
-
Just edited my answer, see if that helps. :) – PStein Oct 09 '20 at 10:44