Explain better ignore_groups

This commit is contained in:
Lucas Verney 2016-03-04 10:15:18 +01:00
parent c1292c5624
commit d82848fb54
1 changed files with 3 additions and 1 deletions

View File

@ -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",