d1ae68571b20c86eda94f74dc035b5c22cc8e5bd,examples/axes_grid1/simple_axesgrid.py,,,#,11

Before Change


                 axes_pad=0.1,  // pad between axes in inch.
                 )

for i in range(4):
    grid[i].imshow(im)  // The AxesGrid object work as a list of axes.

plt.show()

After Change


                 axes_pad=0.1,  // pad between axes in inch.
                 )

for ax, im in zip(grid, [im1, im2, im3, im4]):
    // Iterating over the grid returns the Axes.
    ax.imshow(im)

plt.show()
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 6

Instances


Project Name: matplotlib/matplotlib
Commit Name: d1ae68571b20c86eda94f74dc035b5c22cc8e5bd
Time: 2018-09-02
Author: 2836374+timhoffm@users.noreply.github.com
File Name: examples/axes_grid1/simple_axesgrid.py
Class Name:
Method Name:


Project Name: matplotlib/matplotlib
Commit Name: d1ae68571b20c86eda94f74dc035b5c22cc8e5bd
Time: 2018-09-02
Author: 2836374+timhoffm@users.noreply.github.com
File Name: examples/axes_grid1/demo_axes_grid.py
Class Name:
Method Name: demo_grid_with_each_cbar_labelled


Project Name: scikit-image/scikit-image
Commit Name: 958f8f41da4f00c2e9c8d1be0616fcc59c5ee3f0
Time: 2017-10-21
Author: peter@goldsborough.me
File Name: doc/examples/edges/plot_random_shapes.py
Class Name:
Method Name: