From d425a719996e1191351d52c840d3b7689d95d4ce Mon Sep 17 00:00:00 2001 From: Ian Hunt-Isaak Date: Sun, 21 Feb 2021 14:20:37 -0500 Subject: [PATCH] clarify that it is ok to use plt.subplots This is a real source of confusion for users when told that they should prefer the OO style. --- tutorials/introductory/lifecycle.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tutorials/introductory/lifecycle.py b/tutorials/introductory/lifecycle.py index 00732d4acaed..4d456370b640 100644 --- a/tutorials/introductory/lifecycle.py +++ b/tutorials/introductory/lifecycle.py @@ -41,7 +41,8 @@ .. note:: In general, try to use the object-oriented interface over the pyplot - interface. + interface for making the plots. However, for creating figures and axes + the pyplot interface with `~.pyplot.subplots` should be preferred. Our data ========