fdb5900995c0de782b324d62bdc2b6ce00a67e34,examples/api/two_scales.py,,two_scales,#Any#Any#Any#Any#Any#Any#,21

Before Change


    ax1.set_ylabel("exp")

    ax2.plot(time, data2, color=c2)
    ax2.set_ylabel("sin")

    return ax1, ax2

// Create some mock data

After Change


        ax.plot(time, data, color=c)
        // Color the y-axis (both label and tick labels)
        ax.yaxis.label.set_color(c)
        for t in ax.get_yticklabels():
            t.set_color(c)

    return ax1, ax2

// Create some mock data
t = np.arange(0.01, 10.0, 0.01)
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 4

Instances


Project Name: matplotlib/matplotlib
Commit Name: fdb5900995c0de782b324d62bdc2b6ce00a67e34
Time: 2018-01-24
Author: vincent.adrien@gmail.com
File Name: examples/api/two_scales.py
Class Name:
Method Name: two_scales


Project Name: rodluger/starry
Commit Name: 73bf812cc5598a0e6efb20d11de6568a80125a21
Time: 2018-04-29
Author: rodluger@gmail.com
File Name: misc/stability/brgrid.py
Class Name:
Method Name: RMinusOneRPlusOne


Project Name: rodluger/starry
Commit Name: 73bf812cc5598a0e6efb20d11de6568a80125a21
Time: 2018-04-29
Author: rodluger@gmail.com
File Name: misc/stability/brgrid.py
Class Name:
Method Name: BRGrid