Skip to content

Commit

Permalink
Added comment about normalizing by casting to HoloMap
Browse files Browse the repository at this point in the history
  • Loading branch information
jlstevens committed Feb 10, 2016
1 parent f80ba85 commit 02f288b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions doc/Tutorials/Dynamic_Map.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -521,7 +521,7 @@
"outputs": [],
"source": [
"hv.DynamicMap(shapes, kdims=[hv.Dimension('N', values=[2,3,4,5]), \n",
" hv.Dimension('radius', values=[0.7,0.8,0.9,1])])\n"
" hv.Dimension('radius', values=[0.7,0.8,0.9,1])])"
]
},
{
Expand Down Expand Up @@ -1202,7 +1202,9 @@
"source": [
"Here we use ``+axiswise`` to see the behavior of the two cases independently. We see in **A** that when ``vrange=False`` and no range is set on the value dimension, no automatic normalization occurs (as it would for a ``HoloMap``). In **B** we see that normalization is applied but only when the value dimension range has been specified. \n",
"\n",
"In other words ``DynamicMaps`` do not support automatic normalization across their elements but do support the same explicit normalization behavior as ``HoloMaps``. Values that are generated outside this range are simply clipped according the usual semantics of explicit value dimension ranges."
"In other words ``DynamicMaps`` do not support automatic normalization across their elements but do support the same explicit normalization behavior as ``HoloMaps``. Values that are generated outside this range are simply clipped according the usual semantics of explicit value dimension ranges. \n",
"\n",
"Note that we can always have the option of casting a ``DynamicMap`` to a ``HoloMap`` in order to automatically normalize across the cached values without needing explicit value dimension ranges."
]
},
{
Expand Down

0 comments on commit 02f288b

Please sign in to comment.