Skip to content

Commit

Permalink
SYN-9 Display html report in notebook cell.
Browse files Browse the repository at this point in the history
  • Loading branch information
tylersbray committed Oct 7, 2020
1 parent 53c3df2 commit 2b05b71
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion examples/launch_synthetics.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,13 @@
"metadata": {},
"outputs": [],
"source": [
"bundle.generate_report()"
"from IPython.core.display import display\n",
"from IPython.display import IFrame\n",
"\n",
"# By default Distribution Comparison figures are only generated for categories with <= 60 unique values.\n",
"# Use the plot_max_unique_values parameter to generate_report to change this.\n",
"bundle.generate_report(report_path=\"./report.html\")\n",
"display(IFrame(\"./report.html\", 1000, 600))"
]
}
],
Expand Down

0 comments on commit 2b05b71

Please sign in to comment.