365d54c7eadcad1d9ff065299f75da7ca5f80d28,lib/matplotlib/tests/test_axes.py,,test_symlog2,#,1082

Before Change


    // Plots a simple linear function "f(x) = x"
    ax.plot(x, x)
    ax.set_xscale("symlog", linthreshx=0.1)
    ax.grid(True)

    ax = fig.add_subplot(515)
    // Plots a simple linear function "f(x) = x"
    ax.plot(x, x)

After Change


    x = np.arange(-50, 50, 0.001)

    fig, axs = plt.subplots(5, 1)
    for ax, linthreshx in zip(axs, [20., 2., 1., 0.1, 0.01]):
        ax.plot(x, x)
        ax.set_xscale("symlog", linthreshx=linthreshx)
        ax.grid(True)
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 2

Instances


Project Name: matplotlib/matplotlib
Commit Name: 365d54c7eadcad1d9ff065299f75da7ca5f80d28
Time: 2018-07-05
Author: 2836374+timhoffm@users.noreply.github.com
File Name: lib/matplotlib/tests/test_axes.py
Class Name:
Method Name: test_symlog2


Project Name: alexandrebarachant/pyRiemann
Commit Name: 4adafe833aa3ac54eb01f81dad822db2592d8537
Time: 2017-06-13
Author: pedro.rodrigues01@gmail.com
File Name: examples/ERP/plot_embedding_EEG.py
Class Name:
Method Name:


Project Name: matplotlib/matplotlib
Commit Name: f742f0a9ae6c7b4b92fac3dbe3a037eba00dabb0
Time: 2018-04-12
Author: jklymak@gmail.com
File Name: examples/lines_bars_and_markers/fill.py
Class Name:
Method Name: