<div dir="ltr">Hi all,<div><br></div><div>Matplotlib 1.5.3 was released recently and it contains a nice yt-specific bugfix that I added to matplotlib that should make all of our lives easier.</div><div><br></div><div>As soon as you update matplotlib, you'll be able to make an imshow plot of a 2D YTArray (e.g. one produced by FixedResolutionBuffer) without stripping the array's units first.</div><div><br></div><div>In other words:</div><div><br></div><div>    import yt</div><div>    from matplotlib import pyplot as plt</div><div><br></div><div>    ds = yt.load(...)</div><div>    plot = yt.SlicePlot(ds, 2, 'density')</div><div>    </div><div>    density_image = plot.frb['density']</div><div><br></div><div>    plt.imshow(density_image)</div><div>    plt.show()</div><div><br></div><div>will actually create an imshow plot instead of erroring out as would have happened in earlier versions of matplotlib.</div><div><br></div><div>For more details about this, see: <a href="https://github.com/matplotlib/matplotlib/pull/6622">https://github.com/matplotlib/matplotlib/pull/6622</a></div><div><br></div><div>-Nathan Goldbaum</div></div>