Visualize the profiling run in a bokeh plot. See also -------- dask.diagnostics.profile_visualize.visualize
(self, **kwargs)
| 220 | return plot_resources(self.results, self.start_time, self.end_time, **kwargs) |
| 221 | |
| 222 | def visualize(self, **kwargs): |
| 223 | """Visualize the profiling run in a bokeh plot. |
| 224 | |
| 225 | See also |
| 226 | -------- |
| 227 | dask.diagnostics.profile_visualize.visualize |
| 228 | """ |
| 229 | from dask.diagnostics.profile_visualize import visualize |
| 230 | |
| 231 | return visualize(self, **kwargs) |
| 232 | |
| 233 | |
| 234 | class _Tracker(Process): |
nothing calls this directly
no test coverage detected