Skip to content

Commit

Permalink
Updated remaining notebook references to Trisurface
Browse files Browse the repository at this point in the history
  • Loading branch information
jlstevens committed Dec 19, 2017
1 parent bfa91a6 commit ef61f5a
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 15 deletions.
12 changes: 6 additions & 6 deletions doc/Tutorials/Bokeh_Elements.ipynb
Expand Up @@ -48,7 +48,7 @@
"<dl class=\"dl-horizontal\">\n",
" <dt><a href=\"#Surface\"><code>Surface</code></a></dt><dd>Continuous collection of points in a three-dimensional space. <font color='red'>&#x2717;</font></dd>\n",
" <dt><a href=\"#Scatter3D\"><code>Scatter3D</code></a></dt><dd>Discontinuous collection of points in a three-dimensional space. <font color='red'>&#x2717;</font></dd>\n",
" <dt><a href=\"#Trisurface\"><code>Trisurface</code></a></dt><dd>Continuous but irregular collection of points interpolated into a Surface using Delaunay triangulation. <font color='red'>&#x2717;</font></dd>\n",
" <dt><a href=\"#TriSurface\"><code>TriSurface</code></a></dt><dd>Continuous but irregular collection of points interpolated into a Surface using Delaunay triangulation. <font color='red'>&#x2717;</font></dd>\n",
"</dl>\n",
"\n",
"\n",
Expand Down Expand Up @@ -763,14 +763,14 @@
"``Scatter3D`` is the equivalent of ``Scatter`` but for two key dimensions, rather than just one.\n",
"\n",
"\n",
"### ``Trisurface`` <a id='Trisurface'></a>"
"### ``TriSurface`` <a id='TriSurface'></a>"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"The ``Trisurface`` Element renders any collection of 3D points as a Surface by applying Delaunay triangulation. It thus supports arbitrary, non-gridded data, but it does not support indexing to find data values, since finding the closest ones would require a search."
"The ``TriSurface`` Element renders any collection of 3D points as a Surface by applying Delaunay triangulation. It thus supports arbitrary, non-gridded data, but it does not support indexing to find data values, since finding the closest ones would require a search."
]
},
{
Expand All @@ -779,8 +779,8 @@
"metadata": {},
"outputs": [],
"source": [
"%%opts Trisurface [fig_size=200] (cmap='hot_r')\n",
"hv.Trisurface((x.flat,y.flat,heights.flat))"
"%%opts TriSurface [fig_size=200] (cmap='hot_r')\n",
"hv.TriSurface((x.flat,y.flat,heights.flat))"
]
},
{
Expand Down Expand Up @@ -1418,5 +1418,5 @@
}
},
"nbformat": 4,
"nbformat_minor": 0
"nbformat_minor": 1
}
2 changes: 1 addition & 1 deletion doc/Tutorials/Columnar_Data.ipynb
Expand Up @@ -80,7 +80,7 @@
"* 0D: BoxWhisker, Spikes, Distribution*, \n",
"* 1D: Scatter, Curve, ErrorBars, Spread, Bars, BoxWhisker, Regression*\n",
"* 2D: Points, HeatMap, Bars, BoxWhisker, Bivariate*\n",
"* 3D: Scatter3D, Trisurface, VectorField, BoxWhisker, Bars\n",
"* 3D: Scatter3D, TriSurface, VectorField, BoxWhisker, Bars\n",
"\n",
"\\* - requires Seaborn\n",
"\n",
Expand Down
12 changes: 6 additions & 6 deletions doc/Tutorials/Elements.ipynb
Expand Up @@ -44,7 +44,7 @@
"<dl class=\"dl-horizontal\">\n",
" <dt><a href=\"#Surface\"><code>Surface</code></a></dt><dd>Continuous collection of points in a three-dimensional space.</dd>\n",
" <dt><a href=\"#Scatter3D\"><code>Scatter3D</code></a></dt><dd>Discontinuous collection of points in a three-dimensional space.</dd>\n",
" <dt><a href=\"#Trisurface\"><code>Trisurface</code></a></dt><dd>Continuous but irregular collection of points interpolated into a Surface using Delaunay triangulation.</dd>\n",
" <dt><a href=\"#TriSurface\"><code>TriSurface</code></a></dt><dd>Continuous but irregular collection of points interpolated into a Surface using Delaunay triangulation.</dd>\n",
"</dl>\n",
"\n",
"\n",
Expand Down Expand Up @@ -796,14 +796,14 @@
"``Scatter3D`` is the equivalent of ``Scatter`` but for two key dimensions, rather than just one.\n",
"\n",
"\n",
"### ``Trisurface`` <a id='Trisurface'></a>"
"### ``TriSurface`` <a id='TriSurface'></a>"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"The ``Trisurface`` Element renders any collection of 3D points as a Surface by applying Delaunay triangulation. It thus supports arbitrary, non-gridded data, but it does not support indexing to find data values, since finding the closest ones would require a search."
"The ``TriSurface`` Element renders any collection of 3D points as a Surface by applying Delaunay triangulation. It thus supports arbitrary, non-gridded data, but it does not support indexing to find data values, since finding the closest ones would require a search."
]
},
{
Expand All @@ -812,8 +812,8 @@
"metadata": {},
"outputs": [],
"source": [
"%%opts Trisurface [fig_size=200] (cmap='hot_r')\n",
"hv.Trisurface((x.flat,y.flat,heights.flat))"
"%%opts TriSurface [fig_size=200] (cmap='hot_r')\n",
"hv.TriSurface((x.flat,y.flat,heights.flat))"
]
},
{
Expand Down Expand Up @@ -1454,5 +1454,5 @@
}
},
"nbformat": 4,
"nbformat_minor": 0
"nbformat_minor": 1
}
2 changes: 1 addition & 1 deletion examples/topics/simulation/sri_model.ipynb
Expand Up @@ -576,7 +576,7 @@
"outputs": [],
"source": [
"%%opts Layout [fig_size=200] \n",
"%%opts Trisurface (cmap='Reds_r' linewidth=0.1)\n",
"%%opts TriSurface (cmap='Reds_r' linewidth=0.1)\n",
"(hv.Table(df).to.trisurface(['pVaccinated', 'Connections'],\n",
" '$R_0$', [], group='$R_0$') +\n",
"hv.Table(df).to.trisurface(['pVaccinated', 'Connections'],\n",
Expand Down
2 changes: 1 addition & 1 deletion examples/user_guide/07-Tabular_Datasets.ipynb
Expand Up @@ -87,7 +87,7 @@
"* 0D: BoxWhisker, Spikes, Distribution*, \n",
"* 1D: Scatter, Curve, ErrorBars, Spread, Bars, BoxWhisker, Regression*\n",
"* 2D: Points, HeatMap, Bars, BoxWhisker, Bivariate*\n",
"* 3D: Scatter3D, Trisurface, VectorField, BoxWhisker, Bars\n",
"* 3D: Scatter3D, TriSurface, VectorField, BoxWhisker, Bars\n",
"\n",
"\\* - requires Seaborn\n",
"\n",
Expand Down

0 comments on commit ef61f5a

Please sign in to comment.