Skip to content

Commit

Permalink
Updated user guides to use hv.extension()
Browse files Browse the repository at this point in the history
  • Loading branch information
jlstevens committed Jun 18, 2017
1 parent 454cd53 commit 5c26ea6
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion guides/user_guide/Building_Composite_Objects.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"source": [
"import numpy as np\n",
"import holoviews as hv\n",
"hv.notebook_extension()"
"hv.extension()"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion guides/user_guide/Continuous_Coordinates.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"source": [
"import numpy as np\n",
"import holoviews as hv\n",
"hv.notebook_extension()\n",
"hv.extension()\n",
"\n",
"np.set_printoptions(precision=2, linewidth=80)\n",
"%opts HeatMap (cmap=\"hot\")"
Expand Down
2 changes: 1 addition & 1 deletion guides/user_guide/Customizing_Plots.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"source": [
"import numpy as np\n",
"import holoviews as hv\n",
"hv.notebook_extension()\n",
"hv.extension()\n",
"\n",
"x,y = np.mgrid[-50:51, -50:51] * 0.1\n",
"image = hv.Image(np.sin(x**2+y**2), group=\"Function\", label=\"Sine\") \n",
Expand Down
2 changes: 1 addition & 1 deletion guides/user_guide/Exporting_and_Archiving.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"import numpy as np\n",
"import holoviews as hv\n",
"from holoviews.operation import contours\n",
"hv.notebook_extension()"
"hv.extension()"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion guides/user_guide/Indexing_and_Selecting_Data.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"source": [
"import numpy as np\n",
"import holoviews as hv\n",
"hv.notebook_extension()\n",
"hv.extension()\n",
"%opts Layout [fig_size=125] Points [size_index=None] (s=50) Scatter3D [size_index=None]\n",
"%opts Bounds (linewidth=2 color='k') {+axiswise} Text (fontsize=16 color='k') Image (cmap='Reds')"
]
Expand Down
2 changes: 1 addition & 1 deletion guides/user_guide/Live_Data.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
"source": [
"import holoviews as hv\n",
"import numpy as np\n",
"hv.notebook_extension()"
"hv.extension()"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion guides/user_guide/Responding_to_Events.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"import numpy as np\n",
"import holoviews as hv\n",
"import numpy as np\n",
"hv.notebook_extension()"
"hv.extension()"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion guides/user_guide/Tabular_Datasets.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"import pandas as pd\n",
"import holoviews as hv\n",
"from IPython.display import HTML\n",
"hv.notebook_extension()"
"hv.extension()"
]
},
{
Expand Down

0 comments on commit 5c26ea6

Please sign in to comment.