9937d332ee11207ff2c01501cf3e1a8d5127fbb9,examples/misc/zorder_demo.py,,,#,33

Before Change


x = np.linspace(0, 2*np.pi, 100)
plt.rcParams["lines.linewidth"] = 10
plt.figure()
plt.plot(x, np.sin(x), label="zorder=10", zorder=10)  // on top
plt.plot(x, np.sin(1.1*x), label="zorder=1", zorder=1)  // bottom
plt.plot(x, np.sin(1.2*x), label="zorder=3",  zorder=3)
plt.axhline(0, label="zorder=2", color="grey", zorder=2)

After Change


import matplotlib.pyplot as plt
import numpy as np

r = np.linspace(0.3, 1, 30)
theta = np.linspace(0, 4*np.pi, 30)
x = r * np.sin(theta)
y = r * np.cos(theta)

//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// The following example contains a `.Line2D` created by `~.axes.Axes.plot()`
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 4

Non-data size: 4

Instances


Project Name: matplotlib/matplotlib
Commit Name: 9937d332ee11207ff2c01501cf3e1a8d5127fbb9
Time: 2019-12-02
Author: 2836374+timhoffm@users.noreply.github.com
File Name: examples/misc/zorder_demo.py
Class Name:
Method Name:


Project Name: scikit-optimize/scikit-optimize
Commit Name: b8f10b387de929bcb250e4750064355e50b44317
Time: 2016-04-18
Author: manojkumarsivaraj334@gmail.com
File Name: examples/plot_gp_minimize_1d.py
Class Name:
Method Name:


Project Name: matplotlib/matplotlib
Commit Name: 8ee355c59d871c68f0b47edc90551d76fc465ea5
Time: 2019-06-13
Author: 2836374+timhoffm@users.noreply.github.com
File Name: examples/subplots_axes_and_figures/custom_figure_class.py
Class Name:
Method Name:


Project Name: geomstats/geomstats
Commit Name: 2a07ace76a6c93ec0519419bd4e37fd88b3c0217
Time: 2018-02-02
Author: ninamio78@gmail.com
File Name: examples/plot_geodesics.py
Class Name:
Method Name: main