{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Responding to Events" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "import numpy as np\n", "import holoviews as hv\n", "from holoviews import opts\n", "\n", "hv.extension('bokeh')" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "In the [Live Data](./07-Live_Data.ipynb) guide we saw how ``DynamicMap`` allows us to explore high dimensional data using the widgets in the same style as ``HoloMaps``. Although suitable for unbounded exploration of large parameter spaces, the ``DynamicMaps`` described in that notebook support exactly the same mode of interaction as ``HoloMaps``. In particular, the key dimensions are used to specify a set of widgets that when manipulated apply the appropriate indexing to invoke the user-supplied callable.\n", "\n", "In this user guide we will explore the HoloViews streams system that allows *any* sort of value to be supplied from *anywhere*. This system opens a huge set of new possible visualization types, including continuously updating plots that reflect live data as well as dynamic visualizations that can be interacted with directly, as described in the [Custom Interactivity](./13-Custom_Interactivity.ipynb) guide.\n", "\n", "
To use visualize and use a DynamicMap you need to be running a live Jupyter server.
When viewing this user guide as part of the documentation DynamicMaps will be sampled with a limited number of states.
" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# Styles and plot options used in this user guide\n", "\n", "opts.defaults(\n", " opts.Area(fill_color='cornsilk', line_width=2,\n", " line_color='black'),\n", " opts.Ellipse(bgcolor='white', color='black'),\n", " opts.HLine(color='red', line_width=2),\n", " opts.Image(cmap='viridis'),\n", " opts.Path(bgcolor='white', color='black', line_dash='dashdot',\n", " show_grid=False),\n", " opts.VLine(color='red', line_width=2))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## A simple ``DynamicMap``" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Before introducing streams, let us declare a simple ``DynamicMap`` of the sort discussed in the [Live Data](07-Live_Data.ipynb) user guide. This example consists of a ``Curve`` element showing a [Lissajous curve](https://en.wikipedia.org/wiki/Lissajous_curve) with ``VLine`` and ``HLine`` annotations to form a crosshair:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "lin = np.linspace(-np.pi,np.pi,300)\n", "\n", "def lissajous(t, a=3, b=5, delta=np.pi/2.):\n", " return (np.sin(a * t + delta), np.sin(b * t))\n", "\n", "def lissajous_crosshair(t, a=3, b=5, delta=np.pi/2):\n", " (x,y) = lissajous(t,a,b,delta)\n", " return hv.VLine(x) * hv.HLine(y)\n", "\n", "crosshair = hv.DynamicMap(lissajous_crosshair, kdims='t').redim.range(t=(-3.,3.))\n", "\n", "path = hv.Path(lissajous(lin))\n", "\n", "path * crosshair" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "As expected, the declared key dimension (``kdims``) has turned into a slider widget that lets us move the crosshair along the curve. Now let's see how to position the crosshair using streams." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Introducing streams\n", "\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The core concept behind a stream is simple: it defines one or more parameters that can change over time that automatically refreshes code depending on those parameter values. \n", "\n", "Like all objects in HoloViews, these parameters are declared using [param](https://param.holoviz.org/) and streams are defined as a parameterized subclass of the ``holoviews.streams.Stream``. A more convenient way is to use the ``Stream.define`` classmethod:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "from holoviews.streams import Stream, param\n", "Time = Stream.define('Time', t=0.0)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "This results in a ``Time`` class with a numeric ``t`` parameter that defaults to zero. As this object is parameterized, we can use ``hv.help`` to view its parameters:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "hv.help(Time)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "This parameter is a ``param.Number`` as we supplied a float, if we had supplied an integer it would have been a ``param.Integer``. Notice that there is no docstring in the help output above but we can add one by explicitly defining the parameter as follows:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "Time = Stream.define('Time', t=param.Number(default=0.0, doc='A time parameter'))\n", "hv.help(Time)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Now we have defined this ``Time`` stream class, we can make of an instance of it and look at its parameters:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "time_dflt = Time()\n", "print('This Time instance has parameter t={t}'.format(t=time_dflt.t))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "As with all parameterized classes, we can choose to instantiate our parameters with suitable values instead of relying on defaults." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "time = Time(t=np.pi/4)\n", "print('This Time instance has parameter t={t}'.format(t=time.t))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "For more information on defining ``Stream`` classes this way, use ``hv.help(Stream.define)``." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Simple streams example" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We can now supply this streams object to a ``DynamicMap`` using the same ``lissajous_crosshair`` callback from above by adding it to the ``streams`` list:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "dmap = hv.DynamicMap(lissajous_crosshair, streams=[time])\n", "path * dmap + path * lissajous_crosshair(t=np.pi/4.)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Immediately we see that the crosshair position of the ``DynamicMap`` reflects the ``t`` parameter values we set on the ``Time`` stream. This means that the ``t`` parameter was supplied as the argument to the ``lissajous_curve`` callback. As we now have no key dimensions, there is no longer a widget for the ``t`` dimensions.\n", "\n", "Although we have what looks like a static plot, it is in fact dynamic and can be updated in place at any time. To see this, we can call the ``event`` method on our ``DynamicMap``:\n" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "dmap.event(t=0.2)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Running this cell will have updated the crosshair from its original position where $t=\\frac{\\pi}{4}$ to a new position where ``t=0.2``. Try running the cell above with different values of ``t`` and watch the plot update!\n", "\n", "This ``event`` method is the recommended way of updating the stream parameters on a ``DynamicMap`` but if you have a handle on the relevant stream instance, you can also call the ``event`` method on that:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "time.event(t=-0.2)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Running the cell above also moves the crosshair to a new position. As there are no key dimensions, there is only a single valid (empty) key that can be accessed with ``dmap[()]`` or ``dmap.select()`` making ``event`` the only way to explore new parameters.\n", "\n", "We will examine the ``event`` method and the machinery that powers streams in more detail later in the user guide after we have looked at more examples of how streams are used in practice." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Working with multiple streams" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The previous example showed a curve parameterized by a single dimension ``t``. Often you will have multiple stream parameters you would like to declare as follows:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "ls = np.linspace(0, 10, 200)\n", "xx, yy = np.meshgrid(ls, ls)\n", "\n", "XY = Stream.define('XY',x=0.0,y=0.0)\n", "\n", "def marker(x,y):\n", " return hv.VLine(x) * hv.HLine(y)\n", "\n", "image = hv.Image(np.sin(xx)*np.cos(yy))\n", "\n", "dmap = hv.DynamicMap(marker, streams=[XY()])\n", "\n", "image * dmap" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "You can update both ``x`` and ``y`` by passing multiple keywords to the ``event`` method:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "dmap.event(x=-0.2, y=0.1)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Note that the definition above behaves the same as the following definition where we define separate ``X`` and ``Y`` stream classes:\n", "\n", "```python\n", "X = Stream.define('X',x=0.0)\n", "Y = Stream.define('Y',y=0.0)\n", "hv.DynamicMap(marker, streams=[X(), Y()])\n", "```\n", "\n", "The reason why you might want to list multiple streams instead of always defining a single stream containing all the required stream parameters will be made clear in the [Custom Interactivity](./13-Custom_Interactivity.ipynb) guide." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Using Parameterized classes as a stream\n", "\n", "Creating a custom ``Stream`` class is one easy way to declare parameters. However, there's no need to make a Stream if you have already expressed your domain knowledge on a ``Parameterized`` class. For instance, let's assume you have made a simple parameterized `BankAccount` class:\n" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "class BankAccount(param.Parameterized):\n", " balance = param.Number(default=0, doc=\"Bank balance in USD\")\n", " overdraft = param.Number(default=200, doc=\"Overdraft limit\")\n", "\n", "account = BankAccount(name='Jane', balance=300)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "You can link parameter changes straight to DynamicMap callable parameters by passing a keyword:param dictionary to the `streams` argument (for HoloViews version >= 1.14.2):" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "streams = dict(total=account.param.balance, overdraft=account.param.overdraft, owner=account.param.name)\n", "\n", "def table(owner, total, overdraft):\n", " return hv.Table([(owner, overdraft, total)], ['Owner', 'Overdraft ($)', 'Total ($)'])\n", "\n", "bank_dmap = hv.DynamicMap(table, streams=streams)\n", "bank_dmap.opts(height=100)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Now as you set the `balance` parameter on the `janes_account` instance, the DynamicMap above updates. Note that the dictionary specifies that the `balance` parameter is mapped to the `total` argument of the callable." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "account.balance=65.4\n", "account.overdraft=350" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Use with `panel`\n", "\n", "This dictionary format is particularly useful when used with the [Panel](http://panel.pyviz.org/) library (a dependency of HoloViews that should always be available), because `panel` widgets always reflect their values on the `value` parameter. This means that if you declare two Panel widgets as follows:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "import panel as pn\n", "\n", "slider = pn.widgets.FloatSlider(start=0, end=500, name='Balance')\n", "checkbox = pn.widgets.Select(options=['student','regular', 'savings'], name='Account Type')\n", "pn.Row(slider, checkbox)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "You can map both widget values into a `DynamicMap` callback without having a name clash as follows:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "overdraft_limits = {'student':300, 'regular':100, 'savings':0} # Overdraft limits for different account types\n", "streams = dict(owner=account.param.name, total=slider.param.value, acc=checkbox.param.value)\n", "\n", "def account_info(owner, total, acc):\n", " return hv.Table([(owner, acc, overdraft_limits[acc], total)], \n", " ['Owner', 'Account Type', 'Overdraft ($)', 'Total ($)'])\n", "\n", "widget_dmap = hv.DynamicMap(account_info, streams=streams)\n", "widget_dmap.opts(height=100)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "You can now update the plot above using the slider and dropdown widgets. Note that for all these examples, a `Params` stream is created internally. This type of stream can wrap Parameterized objects or sets of Parameters but (since HoloViews 1.10.8) it is rare that an explicit stream object like that needs to be used directly at the user level. To see more examples of how to use Panel with HoloViews, see the [Dashboards user guide](./16-Dashboards.ipynb).\n", "\n", "### Using `.apply.opts`\n", "\n", "You can supplying Parameters in a similar manner to the `.apply.opts` method. In the following example, a `Style` class has Parameters that indicate the desired colorma and color levels for the `image` instance defined earlier. We can link these together as follows:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "class Style(param.Parameterized):\n", "\n", " colormap = param.ObjectSelector(default='viridis', objects=['viridis', 'plasma', 'magma'])\n", "\n", " color_levels = param.Integer(default=255, bounds=(1, 255))\n", "\n", "style = Style()\n", "image.apply.opts(colorbar=True, width=400, cmap=style.param.colormap, color_levels=style.param.color_levels)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Using the `.apply` accessor in this automatically makes the resulting `DynamicMap` depend on the streams specified by the Parameters. Unlike a regular streams class, the plot will update whenever a Parameter on the instance or class changes. For instance, we can update the ``cmap`` and ``color_level`` parameters and watch the plot update in response:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "style.color_levels = 10\n", "style.colormap = 'plasma' # Note that this is mapped to the 'cmap' keyword in .apply.opts" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Combining streams and key dimensions\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "All the ``DynamicMap`` examples above can't be indexed with anything other than ``dmap[()]`` or ``dmap.select()`` as none of them had any key dimensions. This was to focus exclusively on the streams system at the start of the user guide and not because you can't combine key dimensions and streams:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "xs = np.linspace(-3, 3, 400)\n", "\n", "def function(xs, time):\n", " \"Some time varying function\"\n", " return np.exp(np.sin(xs+np.pi/time))\n", "\n", "def integral(limit, time):\n", " curve = hv.Curve((xs, function(xs, time)))[limit:]\n", " area = hv.Area ((xs, function(xs, time)))[:limit]\n", " summed = area.dimension_values('y').sum() * 0.015 # Numeric approximation\n", " return (area * curve * hv.VLine(limit) * hv.Text(limit + 0.5, 2.0, '%.2f' % summed))\n", "\n", "Time = Stream.define('Time', time=1.0)\n", "dmap = hv.DynamicMap(integral, kdims='limit', streams=[Time()]).redim.range(limit=(-3,2))\n", "dmap" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "In this example, you can drag the slider to see a numeric approximation to the integral on the left side on the ``VLine``.\n", "\n", "As ``'limit'`` is declared as a key dimension, it is given a normal HoloViews slider. As we have also defined a ``time`` stream, we can update the displayed curve for any time value:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "dmap.event(time=8)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We now see how to control the ``time`` argument of the integral function by triggering an event with a new time value, and how to control the ``limit`` argument by moving a slider. Controlling ``limit`` with a slider this way is valid but also a little unintuitive: what if you could control ``limit`` just by hovering over the plot?\n", "\n", "In the [Custom Interactivity](13-Custom_Interactivity.ipynb) user guide, we will see how we can do exactly this by switching to the bokeh backend and using the linked streams system." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Matching names to arguments" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Note that in the example above, the key dimension names and the stream parameter names match the arguments to the callable. This *must* be true for stream parameters but this isn't a requirement for key dimensions: if you replace the word 'radius' with 'size' in the example above after ``XY`` is defined, the example still works. \n", "\n", "Here are the rules regarding the callback argument names:\n", "\n", "* If your key dimensions and stream parameters match the callable argument names, the definition is valid.\n", "* If your callable accepts mandatory positional arguments and their number matches the number of key dimensions, the names don't need to match and these arguments will be passed key dimensions values.\n", "\n", "As stream parameters always need to match the argument names, there is a method to allow them to be easily renamed. Let's say you imported a stream class as shown in [Custom_Interactivity](13-Custom_Interactivity.ipynb) or for this example, reuse the existing ``XY`` stream class. You can then use the ``rename`` method allowing the following definition:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "def integral2(lim, t): \n", " 'Same as integral with different argument names'\n", " return integral(lim, t)\n", "\n", "dmap = hv.DynamicMap(integral2, kdims='limit', streams=[Time().rename(time='t')]).redim.range(limit=(-3.,3.))\n", "dmap" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Occasionally, it is useful to suppress some of the stream parameters of a stream class, especially when using the *linked streams* described in [Custom_Interactivity](13-Custom_Interactivity.ipynb). To do this you can rename the stream parameter to ``None`` so that you no longer need to worry about it being passed as an argument to the callable. To re-enable a stream parameter, it is sufficient to either give the stream parameter its original string name or a new string name." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Overlapping stream and key dimensions" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "In the above example above, the stream parameters do not overlap with the declared key dimension. What happens if we add 'time' to the declared key dimensions?\n" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "dmap=hv.DynamicMap(integral, kdims=['time','limit'], streams=[Time()]).redim.range(limit=(-3.,3.))\n", "dmap" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "First you might notice that the 'time' value is now shown in the title but that there is no corresponding time slider as its value is supplied by the stream.\n", "\n", "The 'time' parameter is now an instance of what are called 'dimensioned streams' which re-enable indexing of these dimensions:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "dmap[1,0] + dmap.select(time=3,limit=1.5) + dmap[None,1.5]" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "In **A**, we supply our own values for the 'time and 'limit' parameters. This doesn't change the values of the 'time' parameters on the stream itself but it does allow us to see what would happen when the time value is one. Note the use of ``None`` in **C** as a way of leaving an explicit value unspecified, allowing the current stream value to be used.\n", "\n", "This is one good reason to use dimensioned streams - it restores access to convenient indexing and selecting operation as a way of exploring your visualizations. The other reason it is useful is that if you keep all your parameters dimensioned, it re-enables the ``DynamicMap`` cache described in the [Live Data](07-Live_Data.ipynb), allowing you to record your interaction with streams and allowing you to cast to ``HoloMap`` for export:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "dmap.reset() # Reset the cache, we don't want the values from the cell above\n", "# TODO: redim the limit dimension to a default of 0\n", "dmap.event(time=1)\n", "dmap.event(time=1.5)\n", "dmap.event(time=2)\n", "hv.HoloMap(dmap)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "One use of this would be to have a simulator drive a visualization forward using ``event`` in a loop. You could then stop your simulation and retain the recent history of the output as long as the allowed ``DynamicMap`` cache." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Generators and argument-free callables" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "In addition to callables, Python supports [generators](https://docs.python.org/3/glossary.html#term-generator) that can be defined with the ``yield`` keyword. Calling a function that uses yield returns a [generator iterator](https://docs.python.org/3/glossary.html#term-generator-iterator) object that accepts no arguments but returns new values when iterated or when ``next()`` is applied to it.\n", "\n", "HoloViews supports Python generators for completeness and [generator expressions](https://docs.python.org/3/glossary.html#term-generator-expression) can be a convenient way to define code inline instead of using lambda functions. As generators expressions don't accept arguments and can get 'exhausted' ***we recommend using callables with ``DynamicMap``*** - exposing the relevant arguments also exposes control over your visualization.\n", "\n", "Unlike generators, callables that have arguments allow you to re-visit portions of your parameter space instead of always being forced in one direction via calls to ``next()``. With this caveat in mind, here is an example of a generator and the corresponding generator iterator that returns a ``BoxWhisker`` element:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "def sample_distributions(samples=10, tol=0.04):\n", " np.random.seed(42)\n", " while True:\n", " gauss1 = np.random.normal(size=samples)\n", " gauss2 = np.random.normal(size=samples)\n", " data = (['A']*samples + ['B']*samples, np.hstack([gauss1, gauss2]))\n", " yield hv.BoxWhisker(data, 'Group', 'Value')\n", " samples+=1\n", " \n", "sample_generator = sample_distributions()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "This returns two box whiskers representing samples from two Gaussian distributions of 10 samples. Iterating over this generator simply resamples from these distributions using an additional sample each time.\n", "\n", "As with a callable, we can pass our generator iterator to ``DynamicMap``:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "hv.DynamicMap(sample_generator)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Without using streams, we now have a problem as there is no way to trigger the generator to view the next distribution in the sequence. We can solve this by defining a stream with no parameters:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "dmap = hv.DynamicMap(sample_generator, streams=[Stream.define('Next')()])\n", "dmap" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Stream event update loops" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Now we can simply use ``event()`` to drive the generator forward and update the plot, showing how the two Gaussian distributions converge as the number of samples increase." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "for i in range(40):\n", " dmap.event()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Note that there is a better way to run loops that drive ``dmap.event()`` which supports a ``period`` (in seconds) between updates and a ``timeout`` argument (also in seconds):" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "dmap.periodic(0.1, 1000, timeout=3)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "In this generator example, ``event`` does not require any arguments but you can set the ``param_fn`` argument to a callable that takes an iteration counter and returns a dictionary for setting the stream parameters. In addition you can use ``block=False`` to avoid blocking the notebook using a threaded loop. This can be very useful although it has two downsides 1. all running visualizations using non-blocking updates will be competing for computing resources 2. if you override a variable that the thread is actively using, there can be issues with maintaining consistent state in the notebook.\n", "\n", "Generally, the ``periodic`` utility is recommended for all such event update loops and it will be used instead of explicit loops in the rest of the user guides involving streams.\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Using ``next()``" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The approach shown above of using an empty stream works in an exactly analogous fashion for callables that take no arguments. In both cases, the ``DynamicMap`` ``next()`` method is enabled:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "hv.HoloMap({i:next(dmap) for i in range(10)}, kdims='Iteration')" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Next steps" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The streams system allows you to update plots in place making it possible to build live visualizations that update in response to incoming live data or any other type of event. As we have seen in this user guide, you can use streams together with key dimensions to add additional interactivity to your plots while retaining the familiar widgets.\n", "\n", "This user guide used examples that work with either the matplotlib or bokeh backends. In the [Custom Interactivity](13-Custom_Interactivity.ipynb) user guide, you will see how you can directly interact with dynamic visualizations when using the bokeh backend." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## [Advanced] How streams work\n", "\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "This optional section is not necessary for users who simply want to use the streams system, but it does describe how streams actually work in more detail.\n", "\n", "A stream class is one that inherits from ``Stream`` that typically defines some new parameters. We have already seen one convenient way of defining a stream class:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "defineXY = Stream.define('defineXY', x=0.0, y=0.0)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "This is equivalent to the following definition which would be more appropriate in library code or for complex stream class requiring lots of parameters that need to be documented:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "class XY(Stream):\n", " x = param.Number(default=0.0, constant=True, doc='An X position.')\n", " y = param.Number(default=0.0, constant=True, doc='A Y position.')" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "As we have already seen, we can make an instance of ``XY`` with some initial values for ``x`` and ``y``." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "xy = XY(x=2,y=3)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "However, trying to modify these parameters directly will result in an exception as they have been declared constant (e.g ``xy.x=4`` will throw an error). This is because there are two allowed ways of modifying these parameters, the simplest one being ``update``:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "xy.update(x=4,y=50)\n", "xy.rename(x='xpos', y='ypos').contents" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "This shows how you can update the parameters and also shows the correct way to view the stream parameter values via the ``contents`` property as this will apply any necessary renaming.\n", "\n", "So far, using ``update`` has done nothing but force us to access parameter a certain way. What makes streams work are the side-effects you can trigger when changing a value via the ``event`` method. The relevant side-effect is to invoke callables called 'subscribers'" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Subscribers" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Without defining any subscribes, the ``event`` method is identical to ``update``:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "xy = XY()\n", "xy.event(x=4,y=50)\n", "xy.contents" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Now let's add a subscriber:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "def subscriber(xpos,ypos):\n", " print('The subscriber received xpos={xpos} and ypos={ypos}'.format(xpos=xpos,ypos=ypos))\n", "\n", "xy = XY().rename(x='xpos', y='ypos')\n", "xy.add_subscriber(subscriber)\n", "xy.event(x=4,y=50)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "As we can see, now when you call ``event``, our subscriber is called with the updated parameter values, renamed as appropriate. The ``event`` method accepts the original parameter names and the subscriber receives the new values after any renaming is applied. You can add as many subscribers as you want and you can clear them using the ``clear`` method:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "xy.clear()\n", "xy.event(x=0,y=0)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "When you define a ``DynamicMap`` using streams, the HoloViews plotting system installs the necessary callbacks as subscribers to update the plot when the stream parameters change. The above example clears all subscribers (it is equivalent to ``clear('all')``. To clear only the subscribers you define yourself use ``clear('user')`` and to clear any subscribers installed by the HoloViews plotting system use ``clear('internal')``.\n", "\n", "When using linked streams as described in the [Custom Interactivity](13-Custom_Interactivity.ipynb) user guide, the plotting system recognizes the stream class and registers the necessary machinery with Bokeh to update the stream values based on direct interaction with the plot." ] } ], "metadata": { "language_info": { "name": "python", "pygments_lexer": "ipython3" } }, "nbformat": 4, "nbformat_minor": 1 }