Visualize the profiling run in a bokeh plot. See also -------- dask.diagnostics.profile_visualize.visualize
(self, **kwargs)
| 395 | ) |
| 396 | |
| 397 | def visualize(self, **kwargs): |
| 398 | """Visualize the profiling run in a bokeh plot. |
| 399 | |
| 400 | See also |
| 401 | -------- |
| 402 | dask.diagnostics.profile_visualize.visualize |
| 403 | """ |
| 404 | from dask.diagnostics.profile_visualize import visualize |
| 405 | |
| 406 | return visualize(self, **kwargs) |
| 407 | |
| 408 | def clear(self): |
| 409 | """Clear out old results from profiler""" |
nothing calls this directly
no test coverage detected