07aa92b15195381e9c3ee07f62ba7602caa5a46f,examples/scales/symlog_demo.py,,,#,11

Before Change


plt.subplot(311)
plt.plot(x, y)
plt.xscale("symlog")
plt.ylabel("symlogx")
plt.grid(True)
plt.gca().xaxis.grid(True, which="minor")  // minor grid on too

plt.subplot(312)

After Change


x = np.arange(-50.0, 50.0, dt)
y = np.arange(0, 100.0, dt)

fig, (ax0, ax1, ax2) = plt.subplots(nrows=3)

ax0.plot(x, y)
ax0.set_xscale("symlog")
ax0.set_ylabel("symlogx")
ax0.grid()
ax0.xaxis.grid(which="minor")  // minor grid on too

ax1.plot(y, x)
ax1.set_yscale("symlog")
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 6

Instances


Project Name: matplotlib/matplotlib
Commit Name: 07aa92b15195381e9c3ee07f62ba7602caa5a46f
Time: 2021-01-25
Author: ianthomas23@gmail.com
File Name: examples/scales/symlog_demo.py
Class Name:
Method Name:


Project Name: matplotlib/matplotlib
Commit Name: 07aa92b15195381e9c3ee07f62ba7602caa5a46f
Time: 2021-01-25
Author: ianthomas23@gmail.com
File Name: examples/scales/symlog_demo.py
Class Name:
Method Name:


Project Name: matplotlib/matplotlib
Commit Name: b2a2dccef7052753b8e2c1d99cf0183a03494c17
Time: 2017-07-16
Author: dmgt@users.noreply.github.com
File Name: examples/pylab_examples/simple_plot.py
Class Name:
Method Name:


Project Name: matplotlib/matplotlib
Commit Name: 8e2a74583e11fe77f116ee1f1b186f0875d8ce66
Time: 2019-07-30
Author: mbussonnier@ucmerced.edu
File Name: examples/subplots_axes_and_figures/invert_axes.py
Class Name:
Method Name: