Skip to content

Commit 219ba0e

Browse files
committed
update notebook
1 parent 2b5008c commit 219ba0e

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

docs/tutorial/closer_look_at_plot_pos.ipynb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -278,6 +278,7 @@
278278
}
279279
],
280280
"metadata": {
281+
"anaconda-cloud": {},
281282
"kernelspec": {
282283
"display_name": "Python [default]",
283284
"language": "python",

docs/tutorial/closer_look_at_viz.ipynb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -706,6 +706,7 @@
706706
}
707707
],
708708
"metadata": {
709+
"anaconda-cloud": {},
709710
"kernelspec": {
710711
"display_name": "Python [default]",
711712
"language": "python",

docs/tutorial/getting_started.ipynb

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -366,12 +366,13 @@
366366
"plot = (\n",
367367
" seaborn.load_dataset(\"tips\")\n",
368368
" .assign(pct=lambda df: 100 * df['tip'] / df['total_bill'])\n",
369-
" .pipe(seaborn.FacetGrid, hue='sex', col='time', row='smoker', margin_titles=True, aspect=1.75)\n",
369+
" .pipe(seaborn.FacetGrid, hue='sex', col='time', row='smoker', margin_titles=True, aspect=1.25, size=4)\n",
370370
" .map(probscale.probplot, 'pct', bestfit=True, scatter_kws=dict(alpha=0.75), probax='y')\n",
371371
" .add_legend()\n",
372372
" .set_ylabels('Non-Exceedance Probabilty')\n",
373373
" .set_xlabels('Tips as percent of total bill')\n",
374-
").set(ylim=(0.5, 99.5))"
374+
" .set(ylim=(0.5, 99.5))\n",
375+
")"
375376
]
376377
}
377378
],

0 commit comments

Comments
 (0)