Skip to content

Commit

Permalink
Fixed incorrect options specification for measles example notebook
Browse files Browse the repository at this point in the history
  • Loading branch information
jlstevens committed Apr 8, 2018
1 parent 294d9be commit fd2b2e1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions examples/gallery/demos/bokeh/measles_example.ipynb
Expand Up @@ -65,8 +65,8 @@
"outputs": [],
"source": [
"hm_opts = dict(width=900, height=500, tools=['hover'], logz=True, invert_yaxis=True,\n",
" xrotation=90, labelled=[], toolbar='above', xaxis=None)\n",
"overlay_opts = dict(width=900, height=200, show_title=False)\n",
" labelled=[], toolbar='above', xaxis=None)\n",
"overlay_opts = dict(width=900, height=200, show_title=False, xrotation=90)\n",
"vline_opts = dict(line_color='black')\n",
"\n",
"opts = {'HeatMap': {'plot': hm_opts}, 'Overlay': {'plot': overlay_opts}, 'VLine': {'style': vline_opts}}\n",
Expand Down
4 changes: 2 additions & 2 deletions examples/gallery/demos/matplotlib/measles_example.ipynb
Expand Up @@ -66,8 +66,8 @@
"outputs": [],
"source": [
"hm_opts = dict(aspect=1.4, invert_yaxis=True, show_values=False, show_frame=False,\n",
" xrotation=90, labelled=[], toolbar='above', xaxis=None)\n",
"overlay_opts = dict(aspect=3, show_title=False, bgcolor='white', show_legend=False, show_frame=False)\n",
" labelled=[], toolbar='above', xaxis=None)\n",
"overlay_opts = dict(aspect=3, show_title=False, bgcolor='white', show_legend=False, show_frame=False, xrotation=90)\n",
"vline_opts = dict(color='black')\n",
"layout_opts = dict(aspect_weight=1, fig_size=300, vspace=0, sublabel_format=None)\n",
"\n",
Expand Down

0 comments on commit fd2b2e1

Please sign in to comment.