8ed5e6357a15a7ab3d688e120dde66759128766a,examples/lines_bars_and_markers/fill.py,,,#,15

Before Change



fig, ax = plt.subplots()
ax.fill(x, y, zorder=10)
ax.grid(True, zorder=5)



//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

After Change


fig, ax = plt.subplots()
ax.fill(x, y)
// Outline of the region we"ve filled in
ax.plot([x[0], x[1]], [y[0], y[1]], c="k", linewidth=2.0)
ax.plot([x[1], x[2]], [y[1], y[2]], c="k", linewidth=2.0)
ax.plot([x[2], x[3]], [y[2], y[3]], c="k", linewidth=2.0)
ax.plot([x[3], x[0]], [y[3], y[0]], c="k", linewidth=2.0)
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 5

Non-data size: 2

Instances


Project Name: matplotlib/matplotlib
Commit Name: 8ed5e6357a15a7ab3d688e120dde66759128766a
Time: 2018-04-10
Author: sam.vaughan@physics.ox.ac.uk
File Name: examples/lines_bars_and_markers/fill.py
Class Name:
Method Name:


Project Name: autoreject/autoreject
Commit Name: beeddd09c5550a13447104d282f2dbc756620e52
Time: 2018-05-05
Author: denis.engemann@gmail.com
File Name: examples/plot_auto_repair.py
Class Name:
Method Name:


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: 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:


Project Name: matplotlib/matplotlib
Commit Name: 048cafd2c17219d0e47d90aa073f90d516902a02
Time: 2017-05-30
Author: dstansby@gmail.com
File Name: examples/text_labels_and_annotations/tex_demo.py
Class Name:
Method Name: