3d6f2ae489176838ba22d7ce0dd136962f115b48,lib/matplotlib/tests/test_constrainedlayout.py,,test_constrained_layout8,#,177
Before Change
if i > 0:
ax.set_ylabel("")
if j < 1:
ax.set_xlabel("")
ax.set_title("")
j = 0
for i in [1]:
ax = fig.add_subplot(gs[j, i])
After Change
gs = gridspec.GridSpec(3, 5, figure=fig)
axs = []
for j in [0, 1]:
if j == 0:
ilist = [1]
else:
ilist = [0, 4]
for i in ilist:
ax = fig.add_subplot(gs[j, i])
axs += [ax]
pcm = example_pcolor(ax, fontsize=9)
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 3
Instances
Project Name: matplotlib/matplotlib
Commit Name: 3d6f2ae489176838ba22d7ce0dd136962f115b48
Time: 2018-03-08
Author: jklymak@gmail.com
File Name: lib/matplotlib/tests/test_constrainedlayout.py
Class Name:
Method Name: test_constrained_layout8
Project Name: theislab/scanpy
Commit Name: 8ae527b26368f10e14792fd176b39815675501c8
Time: 2017-09-18
Author: f.alex.wolf@gmx.de
File Name: scanpy/plotting/tools.py
Class Name:
Method Name: aga_path
Project Name: dmnfarrell/pandastable
Commit Name: 0da80b37ecbab87b4d54053e568dde569ed44856
Time: 2016-01-30
Author: farrell.damien@gmail.com
File Name: pandastable/plotting.py
Class Name: PlotViewer
Method Name: setFigureOptions