3d6f2ae489176838ba22d7ce0dd136962f115b48,lib/matplotlib/tests/test_constrainedlayout.py,,test_constrained_layout8,#,177

Before Change


    axs = []
    j = 1
    for i in [0, 4]:
        ax = fig.add_subplot(gs[j, i])
        axs += [ax]
        pcm = example_pcolor(ax, fontsize=9)
        if i > 0:
            ax.set_ylabel("")
        if j < 1:

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)
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 4

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: 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: lmcinnes/umap
Commit Name: ec864694209e675ee3f1e4079bc226b77f867755
Time: 2018-10-20
Author: leland.mcinnes@gmail.com
File Name: umap/plot.py
Class Name:
Method Name: _datashade_points


Project Name: SheffieldML/GPy
Commit Name: 2b0858b697d62b74a57518c91f5ad9e63540b028
Time: 2013-06-04
Author: ibinbei@gmail.com
File Name: GPy/models/mrd.py
Class Name: MRD
Method Name: _handle_plotting


Project Name: uber/ludwig
Commit Name: e3d1e6dfd06c35dec767c53b930fa69fc2ff7b12
Time: 2020-04-14
Author: w4nderlust@gmail.com
File Name: ludwig/utils/visualization_utils.py
Class Name:
Method Name: hyperopt_pair_plot