From d82848fb54e90aee00bb84b2fd2afe0de36e5336 Mon Sep 17 00:00:00 2001 From: "Phyks (Lucas Verney)" Date: Fri, 4 Mar 2016 10:15:18 +0100 Subject: [PATCH] Explain better ignore_groups --- Examples.ipynb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Examples.ipynb b/Examples.ipynb index 539de26..8d919a9 100644 --- a/Examples.ipynb +++ b/Examples.ipynb @@ -17484,7 +17484,9 @@ "source": [ "# Gridify example\n", "# Use ignore_groups=True to put every plot in a different subplot,\n", - "# without having to deal with groups.\n", + "# without having to deal with groups. Here, we did not define any group,\n", + "# so all the plots were in the default group (\"_\"). Using ignore_groups=True,\n", + "# they are put in different subplots anyway.\n", "with replot.Figure() as figure:\n", " figure.plot(np.cos, (-10, 10))\n", " figure.plot(np.cos, (-10, 10))\n",