ce4cf57bd51148b0eeb6c4ddfb28605a5db9af15,bokeh/core/compat/bokeh_renderer.py,BokehRenderer,close_figure,#BokehRenderer#Any#,59
Before Change
else:
// This list comprehension splits the plot.renderers list at the "marker"
// points returning small sublists corresponding with each subplot.
subrends = [list(x[1]) for x in itertools.groupby(
self.plot.renderers, lambda x: is_ax_end(x)) if not x[0]]
plots = []
for i, axes in enumerate(fig.axes):
// create a new plot for each subplot
After Change
// This list comprehension splits the plot.renderers list at the "marker"
// points returning small sublists corresponding with each subplot.
subrends = []
for i in range(1, len(self._axes)):
start, end = self._axes[i-1], self._axes[i]
subrends += [self.plot.renderers[start:end]]
plots = []
for i, axes in enumerate(fig.axes):
// create a new plot for each subplot
_plot = Plot(x_range=self.plot.x_range,
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 5
Instances Project Name: bokeh/bokeh
Commit Name: ce4cf57bd51148b0eeb6c4ddfb28605a5db9af15
Time: 2016-02-01
Author: bryanv@continuum.io
File Name: bokeh/core/compat/bokeh_renderer.py
Class Name: BokehRenderer
Method Name: close_figure
Project Name: daavoo/pyntcloud
Commit Name: b6106d3044f7800af8710cbdc998ed78f7e6588c
Time: 2016-11-30
Author: daviddelaiglesiacastro@gmail.com
File Name: pyntcloud/structures/octree.py
Class Name: Octree
Method Name: get_level_as_sf
Project Name: soft-matter/trackpy
Commit Name: c6607119c25d0178245243ef3fdd3d176dd0d8f2
Time: 2020-01-22
Author: anntzer.lee@gmail.com
File Name: trackpy/linking/utils.py
Class Name:
Method Name: coords_from_df