From fefe7d298f71bda84e2bcc707dc7c6004de14ad9 Mon Sep 17 00:00:00 2001 From: hannah Date: Fri, 17 May 2024 15:16:37 -0400 Subject: [PATCH] Backport PR #28252: DOC: Flip the imshow plot types example to match the other examples --- galleries/plot_types/arrays/imshow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/galleries/plot_types/arrays/imshow.py b/galleries/plot_types/arrays/imshow.py index c28278c6c657..b2920e7fd80c 100644 --- a/galleries/plot_types/arrays/imshow.py +++ b/galleries/plot_types/arrays/imshow.py @@ -19,6 +19,6 @@ # plot fig, ax = plt.subplots() -ax.imshow(Z) +ax.imshow(Z, origin='lower') plt.show()