Visualize the profiling run in a bokeh plot. See also -------- dask.diagnostics.profile_visualize.visualize
(self, **kwargs)
| 97 | ) |
| 98 | |
| 99 | def visualize(self, **kwargs): |
| 100 | """Visualize the profiling run in a bokeh plot. |
| 101 | |
| 102 | See also |
| 103 | -------- |
| 104 | dask.diagnostics.profile_visualize.visualize |
| 105 | """ |
| 106 | from dask.diagnostics.profile_visualize import visualize |
| 107 | |
| 108 | return visualize(self, **kwargs) |
| 109 | |
| 110 | def clear(self): |
| 111 | """Clear out old results from profiler""" |