streams Module¶
streams
Module¶
The streams module defines the streams API that allows visualizations to generate and respond to events, originating either in Python on the server-side or in Javascript in the Jupyter notebook (client-side).
-
class
holoviews.streams.
BoundsX
(linked=True, **params)[source]¶ Bases:
holoviews.streams.LinkedStream
A stream representing the bounds of a box selection as an tuple of the left and right coordinates.
boundsx
= param.Tuple(length=2)Bounds defined as (left, right) tuple.
-
add_subscriber
(subscriber, precedence=0)¶ Register a callable subscriber to this stream which will be invoked either when event is called or when this stream is passed to the trigger classmethod.
Precedence allows the subscriber ordering to be controlled. Users should only add subscribers with precedence between zero and one while HoloViews itself reserves the use of higher precedence values. Subscribers with high precedence are invoked later than ones with low precedence.
-
clear
(policy='all')¶ Clear all subscribers registered to this stream.
The default policy of ‘all’ clears all subscribers. If policy is set to ‘user’, only subscribers defined by the user are cleared (precedence between zero and one). A policy of ‘internal’ clears subscribers with precedence greater than unity used internally by HoloViews.
-
clone
()¶ Return new stream with identical properties and no subscribers
-
classmethod
define
(name, **kwargs)¶ Utility to quickly and easily declare Stream classes. Designed for interactive use such as notebooks and shouldn’t replace parameterized class definitions in source code that is imported.
Takes a stream class name and a set of keywords where each keyword becomes a parameter. If the value is already a parameter, it is simply used otherwise the appropriate parameter type is inferred and declared, using the value as the default.
Supported types: bool, int, float, str, dict, tuple and list
-
event
(**kwargs)¶ Update the stream parameters and trigger an event.
-
property
hashkey
¶ The object the memoization hash is computed from. By default returns the stream contents but can be overridden to provide a custom hash key.
-
rename
(**mapping)¶ The rename method allows stream parameters to be allocated to new names to avoid clashes with other stream parameters of the same name. Returns a new clone of the stream instance with the specified name mapping.
-
reset
()¶ Resets stream parameters to their defaults.
-
property
subscribers
¶ Property returning the subscriber list
-
transform
()¶ Method that can be overwritten by subclasses to process the parameter values before renaming is applied. Returns a dictionary of transformed parameters.
-
classmethod
trigger
(streams)¶ Given a list of streams, collect all the stream parameters into a dictionary and pass it to the union set of subscribers.
Passing multiple streams at once to trigger can be useful when a subscriber may be set multiple times across streams but only needs to be called once.
-
update
(**kwargs)¶ The update method updates the stream parameters (without any renaming applied) in response to some event. If the stream has a custom transform method, this is applied to transform the parameter values accordingly.
To update and trigger, use the event method.
-
class
holoviews.streams.
BoundsXY
(linked=True, **params)[source]¶ Bases:
holoviews.streams.LinkedStream
A stream representing the bounds of a box selection as an tuple of the left, bottom, right and top coordinates.
bounds
= param.Tuple(length=4)Bounds defined as (left, bottom, right, top) tuple.
-
add_subscriber
(subscriber, precedence=0)¶ Register a callable subscriber to this stream which will be invoked either when event is called or when this stream is passed to the trigger classmethod.
Precedence allows the subscriber ordering to be controlled. Users should only add subscribers with precedence between zero and one while HoloViews itself reserves the use of higher precedence values. Subscribers with high precedence are invoked later than ones with low precedence.
-
clear
(policy='all')¶ Clear all subscribers registered to this stream.
The default policy of ‘all’ clears all subscribers. If policy is set to ‘user’, only subscribers defined by the user are cleared (precedence between zero and one). A policy of ‘internal’ clears subscribers with precedence greater than unity used internally by HoloViews.
-
clone
()¶ Return new stream with identical properties and no subscribers
-
classmethod
define
(name, **kwargs)¶ Utility to quickly and easily declare Stream classes. Designed for interactive use such as notebooks and shouldn’t replace parameterized class definitions in source code that is imported.
Takes a stream class name and a set of keywords where each keyword becomes a parameter. If the value is already a parameter, it is simply used otherwise the appropriate parameter type is inferred and declared, using the value as the default.
Supported types: bool, int, float, str, dict, tuple and list
-
event
(**kwargs)¶ Update the stream parameters and trigger an event.
-
property
hashkey
¶ The object the memoization hash is computed from. By default returns the stream contents but can be overridden to provide a custom hash key.
-
rename
(**mapping)¶ The rename method allows stream parameters to be allocated to new names to avoid clashes with other stream parameters of the same name. Returns a new clone of the stream instance with the specified name mapping.
-
reset
()¶ Resets stream parameters to their defaults.
-
property
subscribers
¶ Property returning the subscriber list
-
transform
()¶ Method that can be overwritten by subclasses to process the parameter values before renaming is applied. Returns a dictionary of transformed parameters.
-
classmethod
trigger
(streams)¶ Given a list of streams, collect all the stream parameters into a dictionary and pass it to the union set of subscribers.
Passing multiple streams at once to trigger can be useful when a subscriber may be set multiple times across streams but only needs to be called once.
-
update
(**kwargs)¶ The update method updates the stream parameters (without any renaming applied) in response to some event. If the stream has a custom transform method, this is applied to transform the parameter values accordingly.
To update and trigger, use the event method.
-
class
holoviews.streams.
BoundsY
(linked=True, **params)[source]¶ Bases:
holoviews.streams.LinkedStream
A stream representing the bounds of a box selection as an tuple of the bottom and top coordinates.
boundsy
= param.Tuple(length=2)Bounds defined as (bottom, top) tuple.
-
add_subscriber
(subscriber, precedence=0)¶ Register a callable subscriber to this stream which will be invoked either when event is called or when this stream is passed to the trigger classmethod.
Precedence allows the subscriber ordering to be controlled. Users should only add subscribers with precedence between zero and one while HoloViews itself reserves the use of higher precedence values. Subscribers with high precedence are invoked later than ones with low precedence.
-
clear
(policy='all')¶ Clear all subscribers registered to this stream.
The default policy of ‘all’ clears all subscribers. If policy is set to ‘user’, only subscribers defined by the user are cleared (precedence between zero and one). A policy of ‘internal’ clears subscribers with precedence greater than unity used internally by HoloViews.
-
clone
()¶ Return new stream with identical properties and no subscribers
-
classmethod
define
(name, **kwargs)¶ Utility to quickly and easily declare Stream classes. Designed for interactive use such as notebooks and shouldn’t replace parameterized class definitions in source code that is imported.
Takes a stream class name and a set of keywords where each keyword becomes a parameter. If the value is already a parameter, it is simply used otherwise the appropriate parameter type is inferred and declared, using the value as the default.
Supported types: bool, int, float, str, dict, tuple and list
-
event
(**kwargs)¶ Update the stream parameters and trigger an event.
-
property
hashkey
¶ The object the memoization hash is computed from. By default returns the stream contents but can be overridden to provide a custom hash key.
-
rename
(**mapping)¶ The rename method allows stream parameters to be allocated to new names to avoid clashes with other stream parameters of the same name. Returns a new clone of the stream instance with the specified name mapping.
-
reset
()¶ Resets stream parameters to their defaults.
-
property
subscribers
¶ Property returning the subscriber list
-
transform
()¶ Method that can be overwritten by subclasses to process the parameter values before renaming is applied. Returns a dictionary of transformed parameters.
-
classmethod
trigger
(streams)¶ Given a list of streams, collect all the stream parameters into a dictionary and pass it to the union set of subscribers.
Passing multiple streams at once to trigger can be useful when a subscriber may be set multiple times across streams but only needs to be called once.
-
update
(**kwargs)¶ The update method updates the stream parameters (without any renaming applied) in response to some event. If the stream has a custom transform method, this is applied to transform the parameter values accordingly.
To update and trigger, use the event method.
-
class
holoviews.streams.
BoxEdit
(empty_value=None, num_objects=0, styles={}, tooltip=None, **params)[source]¶ Bases:
holoviews.streams.CDSStream
Attaches a BoxEditTool and syncs the datasource.
- empty_value: int/float/string/None
The value to insert on non-position columns when adding a new box
- num_objects: int
The number of boxes that can be drawn before overwriting the oldest drawn box.
- styles: dict
A dictionary specifying lists of styles to cycle over whenever a new box glyph is drawn.
- tooltip: str
An optional tooltip to override the default
Parameters inherited from:
-
add_subscriber
(subscriber, precedence=0)¶ Register a callable subscriber to this stream which will be invoked either when event is called or when this stream is passed to the trigger classmethod.
Precedence allows the subscriber ordering to be controlled. Users should only add subscribers with precedence between zero and one while HoloViews itself reserves the use of higher precedence values. Subscribers with high precedence are invoked later than ones with low precedence.
-
clear
(policy='all')¶ Clear all subscribers registered to this stream.
The default policy of ‘all’ clears all subscribers. If policy is set to ‘user’, only subscribers defined by the user are cleared (precedence between zero and one). A policy of ‘internal’ clears subscribers with precedence greater than unity used internally by HoloViews.
-
clone
()¶ Return new stream with identical properties and no subscribers
-
classmethod
define
(name, **kwargs)¶ Utility to quickly and easily declare Stream classes. Designed for interactive use such as notebooks and shouldn’t replace parameterized class definitions in source code that is imported.
Takes a stream class name and a set of keywords where each keyword becomes a parameter. If the value is already a parameter, it is simply used otherwise the appropriate parameter type is inferred and declared, using the value as the default.
Supported types: bool, int, float, str, dict, tuple and list
-
event
(**kwargs)¶ Update the stream parameters and trigger an event.
-
property
hashkey
¶ The object the memoization hash is computed from. By default returns the stream contents but can be overridden to provide a custom hash key.
-
rename
(**mapping)¶ The rename method allows stream parameters to be allocated to new names to avoid clashes with other stream parameters of the same name. Returns a new clone of the stream instance with the specified name mapping.
-
reset
()¶ Resets stream parameters to their defaults.
-
property
subscribers
¶ Property returning the subscriber list
-
transform
()¶ Method that can be overwritten by subclasses to process the parameter values before renaming is applied. Returns a dictionary of transformed parameters.
-
classmethod
trigger
(streams)¶ Given a list of streams, collect all the stream parameters into a dictionary and pass it to the union set of subscribers.
Passing multiple streams at once to trigger can be useful when a subscriber may be set multiple times across streams but only needs to be called once.
-
update
(**kwargs)¶ The update method updates the stream parameters (without any renaming applied) in response to some event. If the stream has a custom transform method, this is applied to transform the parameter values accordingly.
To update and trigger, use the event method.
-
class
holoviews.streams.
Buffer
(data, length=1000, index=True, following=True, **params)[source]¶ Bases:
holoviews.streams.Pipe
Buffer allows streaming and accumulating incoming chunks of rows from tabular datasets. The data may be in the form of a pandas DataFrame, 2D arrays of rows and columns or dictionaries of column arrays. Buffer will accumulate the last N rows, where N is defined by the specified
length
. The accumulated data is then made available via thedata
parameter.A Buffer may also be instantiated with a streamz.StreamingDataFrame or a streamz.StreamingSeries, it will automatically subscribe to events emitted by a streamz object.
When streaming a DataFrame will reset the DataFrame index by default making it available to HoloViews elements as dimensions, this may be disabled by setting index=False.
The
following
argument determines whether any plot which is subscribed to this stream will update the axis ranges when an update is pushed. This makes it possible to control whether zooming is allowed while streaming.Parameters inherited from:
holoviews.streams.Pipe
: data-
add_subscriber
(subscriber, precedence=0)¶ Register a callable subscriber to this stream which will be invoked either when event is called or when this stream is passed to the trigger classmethod.
Precedence allows the subscriber ordering to be controlled. Users should only add subscribers with precedence between zero and one while HoloViews itself reserves the use of higher precedence values. Subscribers with high precedence are invoked later than ones with low precedence.
-
clone
()¶ Return new stream with identical properties and no subscribers
-
classmethod
define
(name, **kwargs)¶ Utility to quickly and easily declare Stream classes. Designed for interactive use such as notebooks and shouldn’t replace parameterized class definitions in source code that is imported.
Takes a stream class name and a set of keywords where each keyword becomes a parameter. If the value is already a parameter, it is simply used otherwise the appropriate parameter type is inferred and declared, using the value as the default.
Supported types: bool, int, float, str, dict, tuple and list
-
event
(**kwargs)¶ Update the stream parameters and trigger an event.
-
property
hashkey
¶ The object the memoization hash is computed from. By default returns the stream contents but can be overridden to provide a custom hash key.
-
rename
(**mapping)¶ The rename method allows stream parameters to be allocated to new names to avoid clashes with other stream parameters of the same name. Returns a new clone of the stream instance with the specified name mapping.
-
reset
()¶ Resets stream parameters to their defaults.
-
send
(data)¶ A convenience method to send an event with data without supplying a keyword.
-
property
subscribers
¶ Property returning the subscriber list
-
transform
()¶ Method that can be overwritten by subclasses to process the parameter values before renaming is applied. Returns a dictionary of transformed parameters.
-
classmethod
trigger
(streams)¶ Given a list of streams, collect all the stream parameters into a dictionary and pass it to the union set of subscribers.
Passing multiple streams at once to trigger can be useful when a subscriber may be set multiple times across streams but only needs to be called once.
-
-
class
holoviews.streams.
CDSStream
(linked=True, **params)[source]¶ Bases:
holoviews.streams.LinkedStream
A Stream that syncs a bokeh ColumnDataSource with python.
data
= param.Dict(class_=<class ‘dict’>)Data synced from Bokeh ColumnDataSource supplied as a dictionary of columns, where each column is a list of values (for point-like data) or list of lists of values (for path-like data).
-
add_subscriber
(subscriber, precedence=0)¶ Register a callable subscriber to this stream which will be invoked either when event is called or when this stream is passed to the trigger classmethod.
Precedence allows the subscriber ordering to be controlled. Users should only add subscribers with precedence between zero and one while HoloViews itself reserves the use of higher precedence values. Subscribers with high precedence are invoked later than ones with low precedence.
-
clear
(policy='all')¶ Clear all subscribers registered to this stream.
The default policy of ‘all’ clears all subscribers. If policy is set to ‘user’, only subscribers defined by the user are cleared (precedence between zero and one). A policy of ‘internal’ clears subscribers with precedence greater than unity used internally by HoloViews.
-
clone
()¶ Return new stream with identical properties and no subscribers
-
classmethod
define
(name, **kwargs)¶ Utility to quickly and easily declare Stream classes. Designed for interactive use such as notebooks and shouldn’t replace parameterized class definitions in source code that is imported.
Takes a stream class name and a set of keywords where each keyword becomes a parameter. If the value is already a parameter, it is simply used otherwise the appropriate parameter type is inferred and declared, using the value as the default.
Supported types: bool, int, float, str, dict, tuple and list
-
event
(**kwargs)¶ Update the stream parameters and trigger an event.
-
property
hashkey
¶ The object the memoization hash is computed from. By default returns the stream contents but can be overridden to provide a custom hash key.
-
rename
(**mapping)¶ The rename method allows stream parameters to be allocated to new names to avoid clashes with other stream parameters of the same name. Returns a new clone of the stream instance with the specified name mapping.
-
reset
()¶ Resets stream parameters to their defaults.
-
property
subscribers
¶ Property returning the subscriber list
-
transform
()¶ Method that can be overwritten by subclasses to process the parameter values before renaming is applied. Returns a dictionary of transformed parameters.
-
classmethod
trigger
(streams)¶ Given a list of streams, collect all the stream parameters into a dictionary and pass it to the union set of subscribers.
Passing multiple streams at once to trigger can be useful when a subscriber may be set multiple times across streams but only needs to be called once.
-
update
(**kwargs)¶ The update method updates the stream parameters (without any renaming applied) in response to some event. If the stream has a custom transform method, this is applied to transform the parameter values accordingly.
To update and trigger, use the event method.
-
class
holoviews.streams.
Counter
(rename={}, source=None, subscribers=[], linked=False, transient=False, **params)[source]¶ Bases:
holoviews.streams.Stream
Simple stream that automatically increments an integer counter parameter every time it is updated.
counter
= param.Integer(bounds=(0, None), default=0, inclusive_bounds=(True, True))-
add_subscriber
(subscriber, precedence=0)¶ Register a callable subscriber to this stream which will be invoked either when event is called or when this stream is passed to the trigger classmethod.
Precedence allows the subscriber ordering to be controlled. Users should only add subscribers with precedence between zero and one while HoloViews itself reserves the use of higher precedence values. Subscribers with high precedence are invoked later than ones with low precedence.
-
clear
(policy='all')¶ Clear all subscribers registered to this stream.
The default policy of ‘all’ clears all subscribers. If policy is set to ‘user’, only subscribers defined by the user are cleared (precedence between zero and one). A policy of ‘internal’ clears subscribers with precedence greater than unity used internally by HoloViews.
-
clone
()¶ Return new stream with identical properties and no subscribers
-
classmethod
define
(name, **kwargs)¶ Utility to quickly and easily declare Stream classes. Designed for interactive use such as notebooks and shouldn’t replace parameterized class definitions in source code that is imported.
Takes a stream class name and a set of keywords where each keyword becomes a parameter. If the value is already a parameter, it is simply used otherwise the appropriate parameter type is inferred and declared, using the value as the default.
Supported types: bool, int, float, str, dict, tuple and list
-
event
(**kwargs)¶ Update the stream parameters and trigger an event.
-
property
hashkey
¶ The object the memoization hash is computed from. By default returns the stream contents but can be overridden to provide a custom hash key.
-
rename
(**mapping)¶ The rename method allows stream parameters to be allocated to new names to avoid clashes with other stream parameters of the same name. Returns a new clone of the stream instance with the specified name mapping.
-
reset
()¶ Resets stream parameters to their defaults.
-
property
subscribers
¶ Property returning the subscriber list
-
transform
()[source]¶ Method that can be overwritten by subclasses to process the parameter values before renaming is applied. Returns a dictionary of transformed parameters.
-
classmethod
trigger
(streams)¶ Given a list of streams, collect all the stream parameters into a dictionary and pass it to the union set of subscribers.
Passing multiple streams at once to trigger can be useful when a subscriber may be set multiple times across streams but only needs to be called once.
-
update
(**kwargs)¶ The update method updates the stream parameters (without any renaming applied) in response to some event. If the stream has a custom transform method, this is applied to transform the parameter values accordingly.
To update and trigger, use the event method.
-
-
class
holoviews.streams.
CrossFilterSet
(selection_streams=(), mode='intersection', index_cols=None, **params)[source]¶ Bases:
holoviews.streams.Derived
selection_expr
= param.Parameter()-
add_subscriber
(subscriber, precedence=0)¶ Register a callable subscriber to this stream which will be invoked either when event is called or when this stream is passed to the trigger classmethod.
Precedence allows the subscriber ordering to be controlled. Users should only add subscribers with precedence between zero and one while HoloViews itself reserves the use of higher precedence values. Subscribers with high precedence are invoked later than ones with low precedence.
-
append_input_stream
(stream)¶ Add a new input stream
-
clear
(policy='all')¶ Clear all subscribers registered to this stream.
The default policy of ‘all’ clears all subscribers. If policy is set to ‘user’, only subscribers defined by the user are cleared (precedence between zero and one). A policy of ‘internal’ clears subscribers with precedence greater than unity used internally by HoloViews.
-
clone
()¶ Return new stream with identical properties and no subscribers
-
property
constants
¶ Dict of constants for this instance that should be passed to transform_function
Constant values must not change in response to changes in the values of the input streams. They may, however, change in response to other stream property updates. For example, these values may change if the Stream’s source element changes
-
classmethod
define
(name, **kwargs)¶ Utility to quickly and easily declare Stream classes. Designed for interactive use such as notebooks and shouldn’t replace parameterized class definitions in source code that is imported.
Takes a stream class name and a set of keywords where each keyword becomes a parameter. If the value is already a parameter, it is simply used otherwise the appropriate parameter type is inferred and declared, using the value as the default.
Supported types: bool, int, float, str, dict, tuple and list
-
event
(**kwargs)¶ Update the stream parameters and trigger an event.
-
property
hashkey
¶ The object the memoization hash is computed from. By default returns the stream contents but can be overridden to provide a custom hash key.
-
rename
(**mapping)¶ The rename method allows stream parameters to be allocated to new names to avoid clashes with other stream parameters of the same name. Returns a new clone of the stream instance with the specified name mapping.
-
property
subscribers
¶ Property returning the subscriber list
-
transform
()¶ Method that can be overwritten by subclasses to process the parameter values before renaming is applied. Returns a dictionary of transformed parameters.
-
classmethod
transform_function
(stream_values, constants)[source]¶ Pure function that transforms input stream param values into the param values of this Derived stream.
- Args:
- stream_values: list of dict
Current values of the stream params for each input_stream
- constants: dict
Constants as returned by the constants property of an instance of this stream type.
- Returns: dict
dict of new Stream values where the keys match this stream’s params
-
classmethod
trigger
(streams)¶ Given a list of streams, collect all the stream parameters into a dictionary and pass it to the union set of subscribers.
Passing multiple streams at once to trigger can be useful when a subscriber may be set multiple times across streams but only needs to be called once.
-
update
(**kwargs)¶ The update method updates the stream parameters (without any renaming applied) in response to some event. If the stream has a custom transform method, this is applied to transform the parameter values accordingly.
To update and trigger, use the event method.
-
-
class
holoviews.streams.
CurveEdit
(style={}, tooltip=None, **params)[source]¶ Bases:
holoviews.streams.PointDraw
Attaches a PointDraw to the plot which allows editing the Curve when selected.
- style: dict
A dictionary specifying the style of the vertices.
- tooltip: str
An optional tooltip to override the default
Parameters inherited from:
-
add_subscriber
(subscriber, precedence=0)¶ Register a callable subscriber to this stream which will be invoked either when event is called or when this stream is passed to the trigger classmethod.
Precedence allows the subscriber ordering to be controlled. Users should only add subscribers with precedence between zero and one while HoloViews itself reserves the use of higher precedence values. Subscribers with high precedence are invoked later than ones with low precedence.
-
clear
(policy='all')¶ Clear all subscribers registered to this stream.
The default policy of ‘all’ clears all subscribers. If policy is set to ‘user’, only subscribers defined by the user are cleared (precedence between zero and one). A policy of ‘internal’ clears subscribers with precedence greater than unity used internally by HoloViews.
-
clone
()¶ Return new stream with identical properties and no subscribers
-
classmethod
define
(name, **kwargs)¶ Utility to quickly and easily declare Stream classes. Designed for interactive use such as notebooks and shouldn’t replace parameterized class definitions in source code that is imported.
Takes a stream class name and a set of keywords where each keyword becomes a parameter. If the value is already a parameter, it is simply used otherwise the appropriate parameter type is inferred and declared, using the value as the default.
Supported types: bool, int, float, str, dict, tuple and list
-
event
(**kwargs)¶ Update the stream parameters and trigger an event.
-
property
hashkey
¶ The object the memoization hash is computed from. By default returns the stream contents but can be overridden to provide a custom hash key.
-
rename
(**mapping)¶ The rename method allows stream parameters to be allocated to new names to avoid clashes with other stream parameters of the same name. Returns a new clone of the stream instance with the specified name mapping.
-
reset
()¶ Resets stream parameters to their defaults.
-
property
subscribers
¶ Property returning the subscriber list
-
transform
()¶ Method that can be overwritten by subclasses to process the parameter values before renaming is applied. Returns a dictionary of transformed parameters.
-
classmethod
trigger
(streams)¶ Given a list of streams, collect all the stream parameters into a dictionary and pass it to the union set of subscribers.
Passing multiple streams at once to trigger can be useful when a subscriber may be set multiple times across streams but only needs to be called once.
-
update
(**kwargs)¶ The update method updates the stream parameters (without any renaming applied) in response to some event. If the stream has a custom transform method, this is applied to transform the parameter values accordingly.
To update and trigger, use the event method.
-
class
holoviews.streams.
Derived
(input_streams, exclusive=False, **params)[source]¶ Bases:
holoviews.streams.Stream
A Stream that watches the parameters of one or more input streams and produces a result that is a pure function of the input stream values.
If exclusive=True, then all streams except the most recently updated are cleared.
-
add_subscriber
(subscriber, precedence=0)¶ Register a callable subscriber to this stream which will be invoked either when event is called or when this stream is passed to the trigger classmethod.
Precedence allows the subscriber ordering to be controlled. Users should only add subscribers with precedence between zero and one while HoloViews itself reserves the use of higher precedence values. Subscribers with high precedence are invoked later than ones with low precedence.
-
clear
(policy='all')¶ Clear all subscribers registered to this stream.
The default policy of ‘all’ clears all subscribers. If policy is set to ‘user’, only subscribers defined by the user are cleared (precedence between zero and one). A policy of ‘internal’ clears subscribers with precedence greater than unity used internally by HoloViews.
-
clone
()¶ Return new stream with identical properties and no subscribers
-
property
constants
¶ Dict of constants for this instance that should be passed to transform_function
Constant values must not change in response to changes in the values of the input streams. They may, however, change in response to other stream property updates. For example, these values may change if the Stream’s source element changes
-
classmethod
define
(name, **kwargs)¶ Utility to quickly and easily declare Stream classes. Designed for interactive use such as notebooks and shouldn’t replace parameterized class definitions in source code that is imported.
Takes a stream class name and a set of keywords where each keyword becomes a parameter. If the value is already a parameter, it is simply used otherwise the appropriate parameter type is inferred and declared, using the value as the default.
Supported types: bool, int, float, str, dict, tuple and list
-
event
(**kwargs)¶ Update the stream parameters and trigger an event.
-
property
hashkey
¶ The object the memoization hash is computed from. By default returns the stream contents but can be overridden to provide a custom hash key.
-
rename
(**mapping)¶ The rename method allows stream parameters to be allocated to new names to avoid clashes with other stream parameters of the same name. Returns a new clone of the stream instance with the specified name mapping.
-
reset
()¶ Resets stream parameters to their defaults.
-
property
subscribers
¶ Property returning the subscriber list
-
transform
()[source]¶ Method that can be overwritten by subclasses to process the parameter values before renaming is applied. Returns a dictionary of transformed parameters.
-
classmethod
transform_function
(stream_values, constants)[source]¶ Pure function that transforms input stream param values into the param values of this Derived stream.
- Args:
- stream_values: list of dict
Current values of the stream params for each input_stream
- constants: dict
Constants as returned by the constants property of an instance of this stream type.
- Returns: dict
dict of new Stream values where the keys match this stream’s params
-
classmethod
trigger
(streams)¶ Given a list of streams, collect all the stream parameters into a dictionary and pass it to the union set of subscribers.
Passing multiple streams at once to trigger can be useful when a subscriber may be set multiple times across streams but only needs to be called once.
-
update
(**kwargs)¶ The update method updates the stream parameters (without any renaming applied) in response to some event. If the stream has a custom transform method, this is applied to transform the parameter values accordingly.
To update and trigger, use the event method.
-
-
class
holoviews.streams.
DoubleTap
(linked=True, **params)[source]¶ Bases:
holoviews.streams.PointerXY
The x/y-position of a double-tap or -click in data coordinates.
Parameters inherited from:
-
add_subscriber
(subscriber, precedence=0)¶ Register a callable subscriber to this stream which will be invoked either when event is called or when this stream is passed to the trigger classmethod.
Precedence allows the subscriber ordering to be controlled. Users should only add subscribers with precedence between zero and one while HoloViews itself reserves the use of higher precedence values. Subscribers with high precedence are invoked later than ones with low precedence.
-
clear
(policy='all')¶ Clear all subscribers registered to this stream.
The default policy of ‘all’ clears all subscribers. If policy is set to ‘user’, only subscribers defined by the user are cleared (precedence between zero and one). A policy of ‘internal’ clears subscribers with precedence greater than unity used internally by HoloViews.
-
clone
()¶ Return new stream with identical properties and no subscribers
-
classmethod
define
(name, **kwargs)¶ Utility to quickly and easily declare Stream classes. Designed for interactive use such as notebooks and shouldn’t replace parameterized class definitions in source code that is imported.
Takes a stream class name and a set of keywords where each keyword becomes a parameter. If the value is already a parameter, it is simply used otherwise the appropriate parameter type is inferred and declared, using the value as the default.
Supported types: bool, int, float, str, dict, tuple and list
-
event
(**kwargs)¶ Update the stream parameters and trigger an event.
-
property
hashkey
¶ The object the memoization hash is computed from. By default returns the stream contents but can be overridden to provide a custom hash key.
-
rename
(**mapping)¶ The rename method allows stream parameters to be allocated to new names to avoid clashes with other stream parameters of the same name. Returns a new clone of the stream instance with the specified name mapping.
-
reset
()¶ Resets stream parameters to their defaults.
-
property
subscribers
¶ Property returning the subscriber list
-
transform
()¶ Method that can be overwritten by subclasses to process the parameter values before renaming is applied. Returns a dictionary of transformed parameters.
-
classmethod
trigger
(streams)¶ Given a list of streams, collect all the stream parameters into a dictionary and pass it to the union set of subscribers.
Passing multiple streams at once to trigger can be useful when a subscriber may be set multiple times across streams but only needs to be called once.
-
update
(**kwargs)¶ The update method updates the stream parameters (without any renaming applied) in response to some event. If the stream has a custom transform method, this is applied to transform the parameter values accordingly.
To update and trigger, use the event method.
-
-
class
holoviews.streams.
Draw
(linked=True, **params)[source]¶ Bases:
holoviews.streams.PointerXY
A series of updating x/y-positions when drawing, together with the current stroke count
Parameters inherited from:
stroke_count
= param.Integer(default=0, inclusive_bounds=(True, True))The current drawing stroke count. Increments every time a new stroke is started.
-
add_subscriber
(subscriber, precedence=0)¶ Register a callable subscriber to this stream which will be invoked either when event is called or when this stream is passed to the trigger classmethod.
Precedence allows the subscriber ordering to be controlled. Users should only add subscribers with precedence between zero and one while HoloViews itself reserves the use of higher precedence values. Subscribers with high precedence are invoked later than ones with low precedence.
-
clear
(policy='all')¶ Clear all subscribers registered to this stream.
The default policy of ‘all’ clears all subscribers. If policy is set to ‘user’, only subscribers defined by the user are cleared (precedence between zero and one). A policy of ‘internal’ clears subscribers with precedence greater than unity used internally by HoloViews.
-
clone
()¶ Return new stream with identical properties and no subscribers
-
classmethod
define
(name, **kwargs)¶ Utility to quickly and easily declare Stream classes. Designed for interactive use such as notebooks and shouldn’t replace parameterized class definitions in source code that is imported.
Takes a stream class name and a set of keywords where each keyword becomes a parameter. If the value is already a parameter, it is simply used otherwise the appropriate parameter type is inferred and declared, using the value as the default.
Supported types: bool, int, float, str, dict, tuple and list
-
event
(**kwargs)¶ Update the stream parameters and trigger an event.
-
property
hashkey
¶ The object the memoization hash is computed from. By default returns the stream contents but can be overridden to provide a custom hash key.
-
rename
(**mapping)¶ The rename method allows stream parameters to be allocated to new names to avoid clashes with other stream parameters of the same name. Returns a new clone of the stream instance with the specified name mapping.
-
reset
()¶ Resets stream parameters to their defaults.
-
property
subscribers
¶ Property returning the subscriber list
-
transform
()¶ Method that can be overwritten by subclasses to process the parameter values before renaming is applied. Returns a dictionary of transformed parameters.
-
classmethod
trigger
(streams)¶ Given a list of streams, collect all the stream parameters into a dictionary and pass it to the union set of subscribers.
Passing multiple streams at once to trigger can be useful when a subscriber may be set multiple times across streams but only needs to be called once.
-
update
(**kwargs)¶ The update method updates the stream parameters (without any renaming applied) in response to some event. If the stream has a custom transform method, this is applied to transform the parameter values accordingly.
To update and trigger, use the event method.
-
class
holoviews.streams.
FreehandDraw
(empty_value=None, num_objects=0, styles={}, tooltip=None, **params)[source]¶ Bases:
holoviews.streams.CDSStream
Attaches a FreehandDrawTool and syncs the datasource.
- empty_value: int/float/string/None
The value to insert on non-position columns when adding a new polygon
- num_objects: int
The number of polygons that can be drawn before overwriting the oldest polygon.
- styles: dict
A dictionary specifying lists of styles to cycle over whenever a new freehand glyph is drawn.
- tooltip: str
An optional tooltip to override the default
Parameters inherited from:
-
add_subscriber
(subscriber, precedence=0)¶ Register a callable subscriber to this stream which will be invoked either when event is called or when this stream is passed to the trigger classmethod.
Precedence allows the subscriber ordering to be controlled. Users should only add subscribers with precedence between zero and one while HoloViews itself reserves the use of higher precedence values. Subscribers with high precedence are invoked later than ones with low precedence.
-
clear
(policy='all')¶ Clear all subscribers registered to this stream.
The default policy of ‘all’ clears all subscribers. If policy is set to ‘user’, only subscribers defined by the user are cleared (precedence between zero and one). A policy of ‘internal’ clears subscribers with precedence greater than unity used internally by HoloViews.
-
clone
()¶ Return new stream with identical properties and no subscribers
-
classmethod
define
(name, **kwargs)¶ Utility to quickly and easily declare Stream classes. Designed for interactive use such as notebooks and shouldn’t replace parameterized class definitions in source code that is imported.
Takes a stream class name and a set of keywords where each keyword becomes a parameter. If the value is already a parameter, it is simply used otherwise the appropriate parameter type is inferred and declared, using the value as the default.
Supported types: bool, int, float, str, dict, tuple and list
-
event
(**kwargs)¶ Update the stream parameters and trigger an event.
-
property
hashkey
¶ The object the memoization hash is computed from. By default returns the stream contents but can be overridden to provide a custom hash key.
-
rename
(**mapping)¶ The rename method allows stream parameters to be allocated to new names to avoid clashes with other stream parameters of the same name. Returns a new clone of the stream instance with the specified name mapping.
-
reset
()¶ Resets stream parameters to their defaults.
-
property
subscribers
¶ Property returning the subscriber list
-
transform
()¶ Method that can be overwritten by subclasses to process the parameter values before renaming is applied. Returns a dictionary of transformed parameters.
-
classmethod
trigger
(streams)¶ Given a list of streams, collect all the stream parameters into a dictionary and pass it to the union set of subscribers.
Passing multiple streams at once to trigger can be useful when a subscriber may be set multiple times across streams but only needs to be called once.
-
update
(**kwargs)¶ The update method updates the stream parameters (without any renaming applied) in response to some event. If the stream has a custom transform method, this is applied to transform the parameter values accordingly.
To update and trigger, use the event method.
-
class
holoviews.streams.
History
(input_stream, **params)[source]¶ Bases:
holoviews.streams.Stream
A Stream that maintains a history of the values of a single input stream
values
= param.List(bounds=(0, None), default=[])List containing the historical values of the input stream
-
add_subscriber
(subscriber, precedence=0)¶ Register a callable subscriber to this stream which will be invoked either when event is called or when this stream is passed to the trigger classmethod.
Precedence allows the subscriber ordering to be controlled. Users should only add subscribers with precedence between zero and one while HoloViews itself reserves the use of higher precedence values. Subscribers with high precedence are invoked later than ones with low precedence.
-
clear
(policy='all')¶ Clear all subscribers registered to this stream.
The default policy of ‘all’ clears all subscribers. If policy is set to ‘user’, only subscribers defined by the user are cleared (precedence between zero and one). A policy of ‘internal’ clears subscribers with precedence greater than unity used internally by HoloViews.
-
classmethod
define
(name, **kwargs)¶ Utility to quickly and easily declare Stream classes. Designed for interactive use such as notebooks and shouldn’t replace parameterized class definitions in source code that is imported.
Takes a stream class name and a set of keywords where each keyword becomes a parameter. If the value is already a parameter, it is simply used otherwise the appropriate parameter type is inferred and declared, using the value as the default.
Supported types: bool, int, float, str, dict, tuple and list
-
event
(**kwargs)¶ Update the stream parameters and trigger an event.
-
property
hashkey
¶ The object the memoization hash is computed from. By default returns the stream contents but can be overridden to provide a custom hash key.
-
rename
(**mapping)¶ The rename method allows stream parameters to be allocated to new names to avoid clashes with other stream parameters of the same name. Returns a new clone of the stream instance with the specified name mapping.
-
reset
()¶ Resets stream parameters to their defaults.
-
property
subscribers
¶ Property returning the subscriber list
-
transform
()¶ Method that can be overwritten by subclasses to process the parameter values before renaming is applied. Returns a dictionary of transformed parameters.
-
classmethod
trigger
(streams)¶ Given a list of streams, collect all the stream parameters into a dictionary and pass it to the union set of subscribers.
Passing multiple streams at once to trigger can be useful when a subscriber may be set multiple times across streams but only needs to be called once.
-
update
(**kwargs)¶ The update method updates the stream parameters (without any renaming applied) in response to some event. If the stream has a custom transform method, this is applied to transform the parameter values accordingly.
To update and trigger, use the event method.
-
class
holoviews.streams.
Lasso
(linked=True, **params)[source]¶ Bases:
holoviews.streams.LinkedStream
A stream representing a lasso selection in 2D space as a two-column array of coordinates.
geometry
= param.Array(class_=<class ‘numpy.ndarray’>)The coordinates of the lasso geometry as a two-column array.
-
add_subscriber
(subscriber, precedence=0)¶ Register a callable subscriber to this stream which will be invoked either when event is called or when this stream is passed to the trigger classmethod.
Precedence allows the subscriber ordering to be controlled. Users should only add subscribers with precedence between zero and one while HoloViews itself reserves the use of higher precedence values. Subscribers with high precedence are invoked later than ones with low precedence.
-
clear
(policy='all')¶ Clear all subscribers registered to this stream.
The default policy of ‘all’ clears all subscribers. If policy is set to ‘user’, only subscribers defined by the user are cleared (precedence between zero and one). A policy of ‘internal’ clears subscribers with precedence greater than unity used internally by HoloViews.
-
clone
()¶ Return new stream with identical properties and no subscribers
-
classmethod
define
(name, **kwargs)¶ Utility to quickly and easily declare Stream classes. Designed for interactive use such as notebooks and shouldn’t replace parameterized class definitions in source code that is imported.
Takes a stream class name and a set of keywords where each keyword becomes a parameter. If the value is already a parameter, it is simply used otherwise the appropriate parameter type is inferred and declared, using the value as the default.
Supported types: bool, int, float, str, dict, tuple and list
-
event
(**kwargs)¶ Update the stream parameters and trigger an event.
-
property
hashkey
¶ The object the memoization hash is computed from. By default returns the stream contents but can be overridden to provide a custom hash key.
-
rename
(**mapping)¶ The rename method allows stream parameters to be allocated to new names to avoid clashes with other stream parameters of the same name. Returns a new clone of the stream instance with the specified name mapping.
-
reset
()¶ Resets stream parameters to their defaults.
-
property
subscribers
¶ Property returning the subscriber list
-
transform
()¶ Method that can be overwritten by subclasses to process the parameter values before renaming is applied. Returns a dictionary of transformed parameters.
-
classmethod
trigger
(streams)¶ Given a list of streams, collect all the stream parameters into a dictionary and pass it to the union set of subscribers.
Passing multiple streams at once to trigger can be useful when a subscriber may be set multiple times across streams but only needs to be called once.
-
update
(**kwargs)¶ The update method updates the stream parameters (without any renaming applied) in response to some event. If the stream has a custom transform method, this is applied to transform the parameter values accordingly.
To update and trigger, use the event method.
-
class
holoviews.streams.
LinkedStream
(linked=True, **params)[source]¶ Bases:
holoviews.streams.Stream
A LinkedStream indicates is automatically linked to plot interactions on a backend via a Renderer. Not all backends may support dynamically supplying stream data.
-
add_subscriber
(subscriber, precedence=0)¶ Register a callable subscriber to this stream which will be invoked either when event is called or when this stream is passed to the trigger classmethod.
Precedence allows the subscriber ordering to be controlled. Users should only add subscribers with precedence between zero and one while HoloViews itself reserves the use of higher precedence values. Subscribers with high precedence are invoked later than ones with low precedence.
-
clear
(policy='all')¶ Clear all subscribers registered to this stream.
The default policy of ‘all’ clears all subscribers. If policy is set to ‘user’, only subscribers defined by the user are cleared (precedence between zero and one). A policy of ‘internal’ clears subscribers with precedence greater than unity used internally by HoloViews.
-
clone
()¶ Return new stream with identical properties and no subscribers
-
classmethod
define
(name, **kwargs)¶ Utility to quickly and easily declare Stream classes. Designed for interactive use such as notebooks and shouldn’t replace parameterized class definitions in source code that is imported.
Takes a stream class name and a set of keywords where each keyword becomes a parameter. If the value is already a parameter, it is simply used otherwise the appropriate parameter type is inferred and declared, using the value as the default.
Supported types: bool, int, float, str, dict, tuple and list
-
event
(**kwargs)¶ Update the stream parameters and trigger an event.
-
property
hashkey
¶ The object the memoization hash is computed from. By default returns the stream contents but can be overridden to provide a custom hash key.
-
rename
(**mapping)¶ The rename method allows stream parameters to be allocated to new names to avoid clashes with other stream parameters of the same name. Returns a new clone of the stream instance with the specified name mapping.
-
reset
()¶ Resets stream parameters to their defaults.
-
property
subscribers
¶ Property returning the subscriber list
-
transform
()¶ Method that can be overwritten by subclasses to process the parameter values before renaming is applied. Returns a dictionary of transformed parameters.
-
classmethod
trigger
(streams)¶ Given a list of streams, collect all the stream parameters into a dictionary and pass it to the union set of subscribers.
Passing multiple streams at once to trigger can be useful when a subscriber may be set multiple times across streams but only needs to be called once.
-
update
(**kwargs)¶ The update method updates the stream parameters (without any renaming applied) in response to some event. If the stream has a custom transform method, this is applied to transform the parameter values accordingly.
To update and trigger, use the event method.
-
-
class
holoviews.streams.
MouseEnter
(linked=True, **params)[source]¶ Bases:
holoviews.streams.PointerXY
The x/y-position where the mouse/cursor entered the plot area in data coordinates.
Parameters inherited from:
-
add_subscriber
(subscriber, precedence=0)¶ Register a callable subscriber to this stream which will be invoked either when event is called or when this stream is passed to the trigger classmethod.
Precedence allows the subscriber ordering to be controlled. Users should only add subscribers with precedence between zero and one while HoloViews itself reserves the use of higher precedence values. Subscribers with high precedence are invoked later than ones with low precedence.
-
clear
(policy='all')¶ Clear all subscribers registered to this stream.
The default policy of ‘all’ clears all subscribers. If policy is set to ‘user’, only subscribers defined by the user are cleared (precedence between zero and one). A policy of ‘internal’ clears subscribers with precedence greater than unity used internally by HoloViews.
-
clone
()¶ Return new stream with identical properties and no subscribers
-
classmethod
define
(name, **kwargs)¶ Utility to quickly and easily declare Stream classes. Designed for interactive use such as notebooks and shouldn’t replace parameterized class definitions in source code that is imported.
Takes a stream class name and a set of keywords where each keyword becomes a parameter. If the value is already a parameter, it is simply used otherwise the appropriate parameter type is inferred and declared, using the value as the default.
Supported types: bool, int, float, str, dict, tuple and list
-
event
(**kwargs)¶ Update the stream parameters and trigger an event.
-
property
hashkey
¶ The object the memoization hash is computed from. By default returns the stream contents but can be overridden to provide a custom hash key.
-
rename
(**mapping)¶ The rename method allows stream parameters to be allocated to new names to avoid clashes with other stream parameters of the same name. Returns a new clone of the stream instance with the specified name mapping.
-
reset
()¶ Resets stream parameters to their defaults.
-
property
subscribers
¶ Property returning the subscriber list
-
transform
()¶ Method that can be overwritten by subclasses to process the parameter values before renaming is applied. Returns a dictionary of transformed parameters.
-
classmethod
trigger
(streams)¶ Given a list of streams, collect all the stream parameters into a dictionary and pass it to the union set of subscribers.
Passing multiple streams at once to trigger can be useful when a subscriber may be set multiple times across streams but only needs to be called once.
-
update
(**kwargs)¶ The update method updates the stream parameters (without any renaming applied) in response to some event. If the stream has a custom transform method, this is applied to transform the parameter values accordingly.
To update and trigger, use the event method.
-
-
class
holoviews.streams.
MouseLeave
(linked=True, **params)[source]¶ Bases:
holoviews.streams.PointerXY
The x/y-position where the mouse/cursor entered the plot area in data coordinates.
Parameters inherited from:
-
add_subscriber
(subscriber, precedence=0)¶ Register a callable subscriber to this stream which will be invoked either when event is called or when this stream is passed to the trigger classmethod.
Precedence allows the subscriber ordering to be controlled. Users should only add subscribers with precedence between zero and one while HoloViews itself reserves the use of higher precedence values. Subscribers with high precedence are invoked later than ones with low precedence.
-
clear
(policy='all')¶ Clear all subscribers registered to this stream.
The default policy of ‘all’ clears all subscribers. If policy is set to ‘user’, only subscribers defined by the user are cleared (precedence between zero and one). A policy of ‘internal’ clears subscribers with precedence greater than unity used internally by HoloViews.
-
clone
()¶ Return new stream with identical properties and no subscribers
-
classmethod
define
(name, **kwargs)¶ Utility to quickly and easily declare Stream classes. Designed for interactive use such as notebooks and shouldn’t replace parameterized class definitions in source code that is imported.
Takes a stream class name and a set of keywords where each keyword becomes a parameter. If the value is already a parameter, it is simply used otherwise the appropriate parameter type is inferred and declared, using the value as the default.
Supported types: bool, int, float, str, dict, tuple and list
-
event
(**kwargs)¶ Update the stream parameters and trigger an event.
-
property
hashkey
¶ The object the memoization hash is computed from. By default returns the stream contents but can be overridden to provide a custom hash key.
-
rename
(**mapping)¶ The rename method allows stream parameters to be allocated to new names to avoid clashes with other stream parameters of the same name. Returns a new clone of the stream instance with the specified name mapping.
-
reset
()¶ Resets stream parameters to their defaults.
-
property
subscribers
¶ Property returning the subscriber list
-
transform
()¶ Method that can be overwritten by subclasses to process the parameter values before renaming is applied. Returns a dictionary of transformed parameters.
-
classmethod
trigger
(streams)¶ Given a list of streams, collect all the stream parameters into a dictionary and pass it to the union set of subscribers.
Passing multiple streams at once to trigger can be useful when a subscriber may be set multiple times across streams but only needs to be called once.
-
update
(**kwargs)¶ The update method updates the stream parameters (without any renaming applied) in response to some event. If the stream has a custom transform method, this is applied to transform the parameter values accordingly.
To update and trigger, use the event method.
-
-
class
holoviews.streams.
PanEnd
(linked=True, **params)[source]¶ Bases:
holoviews.streams.PointerXY
The x/y position of a the end of a pan event in data coordinates.
Parameters inherited from:
-
add_subscriber
(subscriber, precedence=0)¶ Register a callable subscriber to this stream which will be invoked either when event is called or when this stream is passed to the trigger classmethod.
Precedence allows the subscriber ordering to be controlled. Users should only add subscribers with precedence between zero and one while HoloViews itself reserves the use of higher precedence values. Subscribers with high precedence are invoked later than ones with low precedence.
-
clear
(policy='all')¶ Clear all subscribers registered to this stream.
The default policy of ‘all’ clears all subscribers. If policy is set to ‘user’, only subscribers defined by the user are cleared (precedence between zero and one). A policy of ‘internal’ clears subscribers with precedence greater than unity used internally by HoloViews.
-
clone
()¶ Return new stream with identical properties and no subscribers
-
classmethod
define
(name, **kwargs)¶ Utility to quickly and easily declare Stream classes. Designed for interactive use such as notebooks and shouldn’t replace parameterized class definitions in source code that is imported.
Takes a stream class name and a set of keywords where each keyword becomes a parameter. If the value is already a parameter, it is simply used otherwise the appropriate parameter type is inferred and declared, using the value as the default.
Supported types: bool, int, float, str, dict, tuple and list
-
event
(**kwargs)¶ Update the stream parameters and trigger an event.
-
property
hashkey
¶ The object the memoization hash is computed from. By default returns the stream contents but can be overridden to provide a custom hash key.
-
rename
(**mapping)¶ The rename method allows stream parameters to be allocated to new names to avoid clashes with other stream parameters of the same name. Returns a new clone of the stream instance with the specified name mapping.
-
reset
()¶ Resets stream parameters to their defaults.
-
property
subscribers
¶ Property returning the subscriber list
-
transform
()¶ Method that can be overwritten by subclasses to process the parameter values before renaming is applied. Returns a dictionary of transformed parameters.
-
classmethod
trigger
(streams)¶ Given a list of streams, collect all the stream parameters into a dictionary and pass it to the union set of subscribers.
Passing multiple streams at once to trigger can be useful when a subscriber may be set multiple times across streams but only needs to be called once.
-
update
(**kwargs)¶ The update method updates the stream parameters (without any renaming applied) in response to some event. If the stream has a custom transform method, this is applied to transform the parameter values accordingly.
To update and trigger, use the event method.
-
-
class
holoviews.streams.
ParamMethod
(parameterized, parameters=None, watch=True, **params)[source]¶ Bases:
holoviews.streams.Params
A Stream that watches the parameter dependencies on a method of a parameterized class and triggers when one of the parameters change.
Parameters inherited from:
holoviews.streams.Params
: parameterized, parameters-
add_subscriber
(subscriber, precedence=0)¶ Register a callable subscriber to this stream which will be invoked either when event is called or when this stream is passed to the trigger classmethod.
Precedence allows the subscriber ordering to be controlled. Users should only add subscribers with precedence between zero and one while HoloViews itself reserves the use of higher precedence values. Subscribers with high precedence are invoked later than ones with low precedence.
-
clear
(policy='all')¶ Clear all subscribers registered to this stream.
The default policy of ‘all’ clears all subscribers. If policy is set to ‘user’, only subscribers defined by the user are cleared (precedence between zero and one). A policy of ‘internal’ clears subscribers with precedence greater than unity used internally by HoloViews.
-
clone
()¶ Return new stream with identical properties and no subscribers
-
classmethod
define
(name, **kwargs)¶ Utility to quickly and easily declare Stream classes. Designed for interactive use such as notebooks and shouldn’t replace parameterized class definitions in source code that is imported.
Takes a stream class name and a set of keywords where each keyword becomes a parameter. If the value is already a parameter, it is simply used otherwise the appropriate parameter type is inferred and declared, using the value as the default.
Supported types: bool, int, float, str, dict, tuple and list
-
event
(**kwargs)¶ Update the stream parameters and trigger an event.
-
classmethod
from_params
(params, **kwargs)¶ Returns Params streams given a dictionary of parameters
- Args:
params (dict): Dictionary of parameters
- Returns:
List of Params streams
-
property
hashkey
¶ The object the memoization hash is computed from. By default returns the stream contents but can be overridden to provide a custom hash key.
-
rename
(**mapping)¶ The rename method allows stream parameters to be allocated to new names to avoid clashes with other stream parameters of the same name. Returns a new clone of the stream instance with the specified name mapping.
-
reset
()¶ Resets stream parameters to their defaults.
-
property
subscribers
¶ Property returning the subscriber list
-
transform
()¶ Method that can be overwritten by subclasses to process the parameter values before renaming is applied. Returns a dictionary of transformed parameters.
-
classmethod
trigger
(streams)¶ Given a list of streams, collect all the stream parameters into a dictionary and pass it to the union set of subscribers.
Passing multiple streams at once to trigger can be useful when a subscriber may be set multiple times across streams but only needs to be called once.
-
unwatch
()¶ Stop watching parameters.
-
update
(**kwargs)¶ The update method updates the stream parameters (without any renaming applied) in response to some event. If the stream has a custom transform method, this is applied to transform the parameter values accordingly.
To update and trigger, use the event method.
-
-
class
holoviews.streams.
Params
(parameterized=None, parameters=None, watch=True, watch_only=False, **params)[source]¶ Bases:
holoviews.streams.Stream
A Stream that watches the changes in the parameters of the supplied Parameterized objects and triggers when they change.
parameterized
= param.ClassSelector(class_=(<class ‘param.parameterized.Parameterized’>, <class ‘param.parameterized.ParameterizedMetaclass’>))Parameterized instance to watch for parameter changes.
parameters
= param.List(bounds=(0, None), default=[])Parameters on the parameterized to watch.
-
add_subscriber
(subscriber, precedence=0)¶ Register a callable subscriber to this stream which will be invoked either when event is called or when this stream is passed to the trigger classmethod.
Precedence allows the subscriber ordering to be controlled. Users should only add subscribers with precedence between zero and one while HoloViews itself reserves the use of higher precedence values. Subscribers with high precedence are invoked later than ones with low precedence.
-
clear
(policy='all')¶ Clear all subscribers registered to this stream.
The default policy of ‘all’ clears all subscribers. If policy is set to ‘user’, only subscribers defined by the user are cleared (precedence between zero and one). A policy of ‘internal’ clears subscribers with precedence greater than unity used internally by HoloViews.
-
clone
()¶ Return new stream with identical properties and no subscribers
-
classmethod
define
(name, **kwargs)¶ Utility to quickly and easily declare Stream classes. Designed for interactive use such as notebooks and shouldn’t replace parameterized class definitions in source code that is imported.
Takes a stream class name and a set of keywords where each keyword becomes a parameter. If the value is already a parameter, it is simply used otherwise the appropriate parameter type is inferred and declared, using the value as the default.
Supported types: bool, int, float, str, dict, tuple and list
-
event
(**kwargs)¶ Update the stream parameters and trigger an event.
-
classmethod
from_params
(params, **kwargs)[source]¶ Returns Params streams given a dictionary of parameters
- Args:
params (dict): Dictionary of parameters
- Returns:
List of Params streams
-
property
hashkey
¶ The object the memoization hash is computed from. By default returns the stream contents but can be overridden to provide a custom hash key.
-
rename
(**mapping)¶ The rename method allows stream parameters to be allocated to new names to avoid clashes with other stream parameters of the same name. Returns a new clone of the stream instance with the specified name mapping.
-
property
subscribers
¶ Property returning the subscriber list
-
transform
()¶ Method that can be overwritten by subclasses to process the parameter values before renaming is applied. Returns a dictionary of transformed parameters.
-
classmethod
trigger
(streams)¶ Given a list of streams, collect all the stream parameters into a dictionary and pass it to the union set of subscribers.
Passing multiple streams at once to trigger can be useful when a subscriber may be set multiple times across streams but only needs to be called once.
-
class
holoviews.streams.
Pipe
(data=None, memoize=False, **params)[source]¶ Bases:
holoviews.streams.Stream
A Stream used to pipe arbitrary data to a callback. Unlike other streams memoization can be disabled for a Pipe stream (and is disabled by default).
data
= param.Parameter()Arbitrary data being streamed to a DynamicMap callback.
-
add_subscriber
(subscriber, precedence=0)¶ Register a callable subscriber to this stream which will be invoked either when event is called or when this stream is passed to the trigger classmethod.
Precedence allows the subscriber ordering to be controlled. Users should only add subscribers with precedence between zero and one while HoloViews itself reserves the use of higher precedence values. Subscribers with high precedence are invoked later than ones with low precedence.
-
clear
(policy='all')¶ Clear all subscribers registered to this stream.
The default policy of ‘all’ clears all subscribers. If policy is set to ‘user’, only subscribers defined by the user are cleared (precedence between zero and one). A policy of ‘internal’ clears subscribers with precedence greater than unity used internally by HoloViews.
-
clone
()¶ Return new stream with identical properties and no subscribers
-
classmethod
define
(name, **kwargs)¶ Utility to quickly and easily declare Stream classes. Designed for interactive use such as notebooks and shouldn’t replace parameterized class definitions in source code that is imported.
Takes a stream class name and a set of keywords where each keyword becomes a parameter. If the value is already a parameter, it is simply used otherwise the appropriate parameter type is inferred and declared, using the value as the default.
Supported types: bool, int, float, str, dict, tuple and list
-
event
(**kwargs)¶ Update the stream parameters and trigger an event.
-
property
hashkey
¶ The object the memoization hash is computed from. By default returns the stream contents but can be overridden to provide a custom hash key.
-
rename
(**mapping)¶ The rename method allows stream parameters to be allocated to new names to avoid clashes with other stream parameters of the same name. Returns a new clone of the stream instance with the specified name mapping.
-
reset
()¶ Resets stream parameters to their defaults.
-
property
subscribers
¶ Property returning the subscriber list
-
transform
()¶ Method that can be overwritten by subclasses to process the parameter values before renaming is applied. Returns a dictionary of transformed parameters.
-
classmethod
trigger
(streams)¶ Given a list of streams, collect all the stream parameters into a dictionary and pass it to the union set of subscribers.
Passing multiple streams at once to trigger can be useful when a subscriber may be set multiple times across streams but only needs to be called once.
-
update
(**kwargs)¶ The update method updates the stream parameters (without any renaming applied) in response to some event. If the stream has a custom transform method, this is applied to transform the parameter values accordingly.
To update and trigger, use the event method.
-
class
holoviews.streams.
PlotReset
(*args, **params)[source]¶ Bases:
holoviews.streams.LinkedStream
A stream signalling when a plot reset event has been triggered.
resetting
= param.Boolean(bounds=(0, 1), default=False)Whether a reset event is being signalled.
-
add_subscriber
(subscriber, precedence=0)¶ Register a callable subscriber to this stream which will be invoked either when event is called or when this stream is passed to the trigger classmethod.
Precedence allows the subscriber ordering to be controlled. Users should only add subscribers with precedence between zero and one while HoloViews itself reserves the use of higher precedence values. Subscribers with high precedence are invoked later than ones with low precedence.
-
clear
(policy='all')¶ Clear all subscribers registered to this stream.
The default policy of ‘all’ clears all subscribers. If policy is set to ‘user’, only subscribers defined by the user are cleared (precedence between zero and one). A policy of ‘internal’ clears subscribers with precedence greater than unity used internally by HoloViews.
-
clone
()¶ Return new stream with identical properties and no subscribers
-
classmethod
define
(name, **kwargs)¶ Utility to quickly and easily declare Stream classes. Designed for interactive use such as notebooks and shouldn’t replace parameterized class definitions in source code that is imported.
Takes a stream class name and a set of keywords where each keyword becomes a parameter. If the value is already a parameter, it is simply used otherwise the appropriate parameter type is inferred and declared, using the value as the default.
Supported types: bool, int, float, str, dict, tuple and list
-
event
(**kwargs)¶ Update the stream parameters and trigger an event.
-
property
hashkey
¶ The object the memoization hash is computed from. By default returns the stream contents but can be overridden to provide a custom hash key.
-
rename
(**mapping)¶ The rename method allows stream parameters to be allocated to new names to avoid clashes with other stream parameters of the same name. Returns a new clone of the stream instance with the specified name mapping.
-
reset
()¶ Resets stream parameters to their defaults.
-
property
subscribers
¶ Property returning the subscriber list
-
transform
()¶ Method that can be overwritten by subclasses to process the parameter values before renaming is applied. Returns a dictionary of transformed parameters.
-
classmethod
trigger
(streams)¶ Given a list of streams, collect all the stream parameters into a dictionary and pass it to the union set of subscribers.
Passing multiple streams at once to trigger can be useful when a subscriber may be set multiple times across streams but only needs to be called once.
-
update
(**kwargs)¶ The update method updates the stream parameters (without any renaming applied) in response to some event. If the stream has a custom transform method, this is applied to transform the parameter values accordingly.
To update and trigger, use the event method.
-
class
holoviews.streams.
PlotSize
(linked=True, **params)[source]¶ Bases:
holoviews.streams.LinkedStream
Returns the dimensions of a plot once it has been displayed.
width
= param.Integer(inclusive_bounds=(True, True))The width of the plot in pixels
height
= param.Integer(inclusive_bounds=(True, True))The height of the plot in pixels
scale
= param.Number(default=1.0, inclusive_bounds=(True, True))Scale factor to scale width and height values reported by the stream
-
add_subscriber
(subscriber, precedence=0)¶ Register a callable subscriber to this stream which will be invoked either when event is called or when this stream is passed to the trigger classmethod.
Precedence allows the subscriber ordering to be controlled. Users should only add subscribers with precedence between zero and one while HoloViews itself reserves the use of higher precedence values. Subscribers with high precedence are invoked later than ones with low precedence.
-
clear
(policy='all')¶ Clear all subscribers registered to this stream.
The default policy of ‘all’ clears all subscribers. If policy is set to ‘user’, only subscribers defined by the user are cleared (precedence between zero and one). A policy of ‘internal’ clears subscribers with precedence greater than unity used internally by HoloViews.
-
clone
()¶ Return new stream with identical properties and no subscribers
-
classmethod
define
(name, **kwargs)¶ Utility to quickly and easily declare Stream classes. Designed for interactive use such as notebooks and shouldn’t replace parameterized class definitions in source code that is imported.
Takes a stream class name and a set of keywords where each keyword becomes a parameter. If the value is already a parameter, it is simply used otherwise the appropriate parameter type is inferred and declared, using the value as the default.
Supported types: bool, int, float, str, dict, tuple and list
-
event
(**kwargs)¶ Update the stream parameters and trigger an event.
-
property
hashkey
¶ The object the memoization hash is computed from. By default returns the stream contents but can be overridden to provide a custom hash key.
-
rename
(**mapping)¶ The rename method allows stream parameters to be allocated to new names to avoid clashes with other stream parameters of the same name. Returns a new clone of the stream instance with the specified name mapping.
-
reset
()¶ Resets stream parameters to their defaults.
-
property
subscribers
¶ Property returning the subscriber list
-
transform
()[source]¶ Method that can be overwritten by subclasses to process the parameter values before renaming is applied. Returns a dictionary of transformed parameters.
-
classmethod
trigger
(streams)¶ Given a list of streams, collect all the stream parameters into a dictionary and pass it to the union set of subscribers.
Passing multiple streams at once to trigger can be useful when a subscriber may be set multiple times across streams but only needs to be called once.
-
update
(**kwargs)¶ The update method updates the stream parameters (without any renaming applied) in response to some event. If the stream has a custom transform method, this is applied to transform the parameter values accordingly.
To update and trigger, use the event method.
-
class
holoviews.streams.
PointDraw
(empty_value=None, add=True, drag=True, num_objects=0, styles={}, tooltip=None, **params)[source]¶ Bases:
holoviews.streams.CDSStream
Attaches a PointDrawTool and syncs the datasource.
- add: boolean
Whether to allow adding new Points
- drag: boolean
Whether to enable dragging of Points
- empty_value: int/float/string/None
The value to insert on non-position columns when adding a new polygon
- num_objects: int
The number of polygons that can be drawn before overwriting the oldest polygon.
- styles: dict
A dictionary specifying lists of styles to cycle over whenever a new Point glyph is drawn.
- tooltip: str
An optional tooltip to override the default
Parameters inherited from:
-
add_subscriber
(subscriber, precedence=0)¶ Register a callable subscriber to this stream which will be invoked either when event is called or when this stream is passed to the trigger classmethod.
Precedence allows the subscriber ordering to be controlled. Users should only add subscribers with precedence between zero and one while HoloViews itself reserves the use of higher precedence values. Subscribers with high precedence are invoked later than ones with low precedence.
-
clear
(policy='all')¶ Clear all subscribers registered to this stream.
The default policy of ‘all’ clears all subscribers. If policy is set to ‘user’, only subscribers defined by the user are cleared (precedence between zero and one). A policy of ‘internal’ clears subscribers with precedence greater than unity used internally by HoloViews.
-
clone
()¶ Return new stream with identical properties and no subscribers
-
classmethod
define
(name, **kwargs)¶ Utility to quickly and easily declare Stream classes. Designed for interactive use such as notebooks and shouldn’t replace parameterized class definitions in source code that is imported.
Takes a stream class name and a set of keywords where each keyword becomes a parameter. If the value is already a parameter, it is simply used otherwise the appropriate parameter type is inferred and declared, using the value as the default.
Supported types: bool, int, float, str, dict, tuple and list
-
event
(**kwargs)¶ Update the stream parameters and trigger an event.
-
property
hashkey
¶ The object the memoization hash is computed from. By default returns the stream contents but can be overridden to provide a custom hash key.
-
rename
(**mapping)¶ The rename method allows stream parameters to be allocated to new names to avoid clashes with other stream parameters of the same name. Returns a new clone of the stream instance with the specified name mapping.
-
reset
()¶ Resets stream parameters to their defaults.
-
property
subscribers
¶ Property returning the subscriber list
-
transform
()¶ Method that can be overwritten by subclasses to process the parameter values before renaming is applied. Returns a dictionary of transformed parameters.
-
classmethod
trigger
(streams)¶ Given a list of streams, collect all the stream parameters into a dictionary and pass it to the union set of subscribers.
Passing multiple streams at once to trigger can be useful when a subscriber may be set multiple times across streams but only needs to be called once.
-
update
(**kwargs)¶ The update method updates the stream parameters (without any renaming applied) in response to some event. If the stream has a custom transform method, this is applied to transform the parameter values accordingly.
To update and trigger, use the event method.
-
class
holoviews.streams.
PointerX
(linked=True, **params)[source]¶ Bases:
holoviews.streams.LinkedStream
A pointer position along the x-axis in data coordinates which may be a numeric or categorical dimension.
With the appropriate plotting backend, this corresponds to the position of the mouse/trackpad cursor. If the pointer is outside the plot bounds, the position is set to None.
x
= param.ClassSelector(class_=(<class ‘numbers.Number’>, <class ‘str’>, <class ‘tuple’>, <class ‘numpy.datetime64’>, <class ‘datetime.datetime’>, <class ‘datetime.date’>, <class ‘datetime.time’>, <class ‘pandas._libs.tslibs.timestamps.Timestamp’>, <class ‘pandas.core.dtypes.dtypes.DatetimeTZDtype’>, <class ‘pandas._libs.tslibs.period.Period’>, <class ‘cftime._cftime.datetime’>))Pointer position along the x-axis in data coordinates
-
add_subscriber
(subscriber, precedence=0)¶ Register a callable subscriber to this stream which will be invoked either when event is called or when this stream is passed to the trigger classmethod.
Precedence allows the subscriber ordering to be controlled. Users should only add subscribers with precedence between zero and one while HoloViews itself reserves the use of higher precedence values. Subscribers with high precedence are invoked later than ones with low precedence.
-
clear
(policy='all')¶ Clear all subscribers registered to this stream.
The default policy of ‘all’ clears all subscribers. If policy is set to ‘user’, only subscribers defined by the user are cleared (precedence between zero and one). A policy of ‘internal’ clears subscribers with precedence greater than unity used internally by HoloViews.
-
clone
()¶ Return new stream with identical properties and no subscribers
-
classmethod
define
(name, **kwargs)¶ Utility to quickly and easily declare Stream classes. Designed for interactive use such as notebooks and shouldn’t replace parameterized class definitions in source code that is imported.
Takes a stream class name and a set of keywords where each keyword becomes a parameter. If the value is already a parameter, it is simply used otherwise the appropriate parameter type is inferred and declared, using the value as the default.
Supported types: bool, int, float, str, dict, tuple and list
-
event
(**kwargs)¶ Update the stream parameters and trigger an event.
-
property
hashkey
¶ The object the memoization hash is computed from. By default returns the stream contents but can be overridden to provide a custom hash key.
-
rename
(**mapping)¶ The rename method allows stream parameters to be allocated to new names to avoid clashes with other stream parameters of the same name. Returns a new clone of the stream instance with the specified name mapping.
-
reset
()¶ Resets stream parameters to their defaults.
-
property
subscribers
¶ Property returning the subscriber list
-
transform
()¶ Method that can be overwritten by subclasses to process the parameter values before renaming is applied. Returns a dictionary of transformed parameters.
-
classmethod
trigger
(streams)¶ Given a list of streams, collect all the stream parameters into a dictionary and pass it to the union set of subscribers.
Passing multiple streams at once to trigger can be useful when a subscriber may be set multiple times across streams but only needs to be called once.
-
update
(**kwargs)¶ The update method updates the stream parameters (without any renaming applied) in response to some event. If the stream has a custom transform method, this is applied to transform the parameter values accordingly.
To update and trigger, use the event method.
-
class
holoviews.streams.
PointerXY
(linked=True, **params)[source]¶ Bases:
holoviews.streams.LinkedStream
A pointer position along the x- and y-axes in data coordinates which may numeric or categorical dimensions.
With the appropriate plotting backend, this corresponds to the position of the mouse/trackpad pointer. If the pointer is outside the plot bounds, the position values are set to None.
x
= param.ClassSelector(class_=(<class ‘numbers.Number’>, <class ‘str’>, <class ‘tuple’>, <class ‘numpy.datetime64’>, <class ‘datetime.datetime’>, <class ‘datetime.date’>, <class ‘datetime.time’>, <class ‘pandas._libs.tslibs.timestamps.Timestamp’>, <class ‘pandas.core.dtypes.dtypes.DatetimeTZDtype’>, <class ‘pandas._libs.tslibs.period.Period’>, <class ‘cftime._cftime.datetime’>))Pointer position along the x-axis in data coordinates
y
= param.ClassSelector(class_=(<class ‘numbers.Number’>, <class ‘str’>, <class ‘tuple’>, <class ‘numpy.datetime64’>, <class ‘datetime.datetime’>, <class ‘datetime.date’>, <class ‘datetime.time’>, <class ‘pandas._libs.tslibs.timestamps.Timestamp’>, <class ‘pandas.core.dtypes.dtypes.DatetimeTZDtype’>, <class ‘pandas._libs.tslibs.period.Period’>, <class ‘cftime._cftime.datetime’>))Pointer position along the y-axis in data coordinates
-
add_subscriber
(subscriber, precedence=0)¶ Register a callable subscriber to this stream which will be invoked either when event is called or when this stream is passed to the trigger classmethod.
Precedence allows the subscriber ordering to be controlled. Users should only add subscribers with precedence between zero and one while HoloViews itself reserves the use of higher precedence values. Subscribers with high precedence are invoked later than ones with low precedence.
-
clear
(policy='all')¶ Clear all subscribers registered to this stream.
The default policy of ‘all’ clears all subscribers. If policy is set to ‘user’, only subscribers defined by the user are cleared (precedence between zero and one). A policy of ‘internal’ clears subscribers with precedence greater than unity used internally by HoloViews.
-
clone
()¶ Return new stream with identical properties and no subscribers
-
classmethod
define
(name, **kwargs)¶ Utility to quickly and easily declare Stream classes. Designed for interactive use such as notebooks and shouldn’t replace parameterized class definitions in source code that is imported.
Takes a stream class name and a set of keywords where each keyword becomes a parameter. If the value is already a parameter, it is simply used otherwise the appropriate parameter type is inferred and declared, using the value as the default.
Supported types: bool, int, float, str, dict, tuple and list
-
event
(**kwargs)¶ Update the stream parameters and trigger an event.
-
property
hashkey
¶ The object the memoization hash is computed from. By default returns the stream contents but can be overridden to provide a custom hash key.
-
rename
(**mapping)¶ The rename method allows stream parameters to be allocated to new names to avoid clashes with other stream parameters of the same name. Returns a new clone of the stream instance with the specified name mapping.
-
reset
()¶ Resets stream parameters to their defaults.
-
property
subscribers
¶ Property returning the subscriber list
-
transform
()¶ Method that can be overwritten by subclasses to process the parameter values before renaming is applied. Returns a dictionary of transformed parameters.
-
classmethod
trigger
(streams)¶ Given a list of streams, collect all the stream parameters into a dictionary and pass it to the union set of subscribers.
Passing multiple streams at once to trigger can be useful when a subscriber may be set multiple times across streams but only needs to be called once.
-
update
(**kwargs)¶ The update method updates the stream parameters (without any renaming applied) in response to some event. If the stream has a custom transform method, this is applied to transform the parameter values accordingly.
To update and trigger, use the event method.
-
class
holoviews.streams.
PointerY
(linked=True, **params)[source]¶ Bases:
holoviews.streams.LinkedStream
A pointer position along the y-axis in data coordinates which may be a numeric or categorical dimension.
With the appropriate plotting backend, this corresponds to the position of the mouse/trackpad pointer. If the pointer is outside the plot bounds, the position is set to None.
y
= param.ClassSelector(class_=(<class ‘numbers.Number’>, <class ‘str’>, <class ‘tuple’>, <class ‘numpy.datetime64’>, <class ‘datetime.datetime’>, <class ‘datetime.date’>, <class ‘datetime.time’>, <class ‘pandas._libs.tslibs.timestamps.Timestamp’>, <class ‘pandas.core.dtypes.dtypes.DatetimeTZDtype’>, <class ‘pandas._libs.tslibs.period.Period’>, <class ‘cftime._cftime.datetime’>))Pointer position along the y-axis in data coordinates
-
add_subscriber
(subscriber, precedence=0)¶ Register a callable subscriber to this stream which will be invoked either when event is called or when this stream is passed to the trigger classmethod.
Precedence allows the subscriber ordering to be controlled. Users should only add subscribers with precedence between zero and one while HoloViews itself reserves the use of higher precedence values. Subscribers with high precedence are invoked later than ones with low precedence.
-
clear
(policy='all')¶ Clear all subscribers registered to this stream.
The default policy of ‘all’ clears all subscribers. If policy is set to ‘user’, only subscribers defined by the user are cleared (precedence between zero and one). A policy of ‘internal’ clears subscribers with precedence greater than unity used internally by HoloViews.
-
clone
()¶ Return new stream with identical properties and no subscribers
-
classmethod
define
(name, **kwargs)¶ Utility to quickly and easily declare Stream classes. Designed for interactive use such as notebooks and shouldn’t replace parameterized class definitions in source code that is imported.
Takes a stream class name and a set of keywords where each keyword becomes a parameter. If the value is already a parameter, it is simply used otherwise the appropriate parameter type is inferred and declared, using the value as the default.
Supported types: bool, int, float, str, dict, tuple and list
-
event
(**kwargs)¶ Update the stream parameters and trigger an event.
-
property
hashkey
¶ The object the memoization hash is computed from. By default returns the stream contents but can be overridden to provide a custom hash key.
-
rename
(**mapping)¶ The rename method allows stream parameters to be allocated to new names to avoid clashes with other stream parameters of the same name. Returns a new clone of the stream instance with the specified name mapping.
-
reset
()¶ Resets stream parameters to their defaults.
-
property
subscribers
¶ Property returning the subscriber list
-
transform
()¶ Method that can be overwritten by subclasses to process the parameter values before renaming is applied. Returns a dictionary of transformed parameters.
-
classmethod
trigger
(streams)¶ Given a list of streams, collect all the stream parameters into a dictionary and pass it to the union set of subscribers.
Passing multiple streams at once to trigger can be useful when a subscriber may be set multiple times across streams but only needs to be called once.
-
update
(**kwargs)¶ The update method updates the stream parameters (without any renaming applied) in response to some event. If the stream has a custom transform method, this is applied to transform the parameter values accordingly.
To update and trigger, use the event method.
-
class
holoviews.streams.
PolyDraw
(empty_value=None, drag=True, num_objects=0, show_vertices=False, vertex_style={}, styles={}, tooltip=None, **params)[source]¶ Bases:
holoviews.streams.CDSStream
Attaches a PolyDrawTool and syncs the datasource.
- drag: boolean
Whether to enable dragging of polygons and paths
- empty_value: int/float/string/None
The value to insert on non-position columns when adding a new polygon
- num_objects: int
The number of polygons that can be drawn before overwriting the oldest polygon.
- show_vertices: boolean
Whether to show the vertices when a polygon is selected
- styles: dict
A dictionary specifying lists of styles to cycle over whenever a new Poly glyph is drawn.
- tooltip: str
An optional tooltip to override the default
- vertex_style: dict
A dictionary specifying the style options for the vertices. The usual bokeh style options apply, e.g. fill_color, line_alpha, size, etc.
Parameters inherited from:
-
add_subscriber
(subscriber, precedence=0)¶ Register a callable subscriber to this stream which will be invoked either when event is called or when this stream is passed to the trigger classmethod.
Precedence allows the subscriber ordering to be controlled. Users should only add subscribers with precedence between zero and one while HoloViews itself reserves the use of higher precedence values. Subscribers with high precedence are invoked later than ones with low precedence.
-
clear
(policy='all')¶ Clear all subscribers registered to this stream.
The default policy of ‘all’ clears all subscribers. If policy is set to ‘user’, only subscribers defined by the user are cleared (precedence between zero and one). A policy of ‘internal’ clears subscribers with precedence greater than unity used internally by HoloViews.
-
clone
()¶ Return new stream with identical properties and no subscribers
-
classmethod
define
(name, **kwargs)¶ Utility to quickly and easily declare Stream classes. Designed for interactive use such as notebooks and shouldn’t replace parameterized class definitions in source code that is imported.
Takes a stream class name and a set of keywords where each keyword becomes a parameter. If the value is already a parameter, it is simply used otherwise the appropriate parameter type is inferred and declared, using the value as the default.
Supported types: bool, int, float, str, dict, tuple and list
-
event
(**kwargs)¶ Update the stream parameters and trigger an event.
-
property
hashkey
¶ The object the memoization hash is computed from. By default returns the stream contents but can be overridden to provide a custom hash key.
-
rename
(**mapping)¶ The rename method allows stream parameters to be allocated to new names to avoid clashes with other stream parameters of the same name. Returns a new clone of the stream instance with the specified name mapping.
-
reset
()¶ Resets stream parameters to their defaults.
-
property
subscribers
¶ Property returning the subscriber list
-
transform
()¶ Method that can be overwritten by subclasses to process the parameter values before renaming is applied. Returns a dictionary of transformed parameters.
-
classmethod
trigger
(streams)¶ Given a list of streams, collect all the stream parameters into a dictionary and pass it to the union set of subscribers.
Passing multiple streams at once to trigger can be useful when a subscriber may be set multiple times across streams but only needs to be called once.
-
update
(**kwargs)¶ The update method updates the stream parameters (without any renaming applied) in response to some event. If the stream has a custom transform method, this is applied to transform the parameter values accordingly.
To update and trigger, use the event method.
-
class
holoviews.streams.
PolyEdit
(vertex_style={}, shared=True, **params)[source]¶ Bases:
holoviews.streams.PolyDraw
Attaches a PolyEditTool and syncs the datasource.
- shared: boolean
Whether PolyEditTools should be shared between multiple elements
- tooltip: str
An optional tooltip to override the default
- vertex_style: dict
A dictionary specifying the style options for the vertices. The usual bokeh style options apply, e.g. fill_color, line_alpha, size, etc.
Parameters inherited from:
-
add_subscriber
(subscriber, precedence=0)¶ Register a callable subscriber to this stream which will be invoked either when event is called or when this stream is passed to the trigger classmethod.
Precedence allows the subscriber ordering to be controlled. Users should only add subscribers with precedence between zero and one while HoloViews itself reserves the use of higher precedence values. Subscribers with high precedence are invoked later than ones with low precedence.
-
clear
(policy='all')¶ Clear all subscribers registered to this stream.
The default policy of ‘all’ clears all subscribers. If policy is set to ‘user’, only subscribers defined by the user are cleared (precedence between zero and one). A policy of ‘internal’ clears subscribers with precedence greater than unity used internally by HoloViews.
-
clone
()¶ Return new stream with identical properties and no subscribers
-
classmethod
define
(name, **kwargs)¶ Utility to quickly and easily declare Stream classes. Designed for interactive use such as notebooks and shouldn’t replace parameterized class definitions in source code that is imported.
Takes a stream class name and a set of keywords where each keyword becomes a parameter. If the value is already a parameter, it is simply used otherwise the appropriate parameter type is inferred and declared, using the value as the default.
Supported types: bool, int, float, str, dict, tuple and list
-
event
(**kwargs)¶ Update the stream parameters and trigger an event.
-
property
hashkey
¶ The object the memoization hash is computed from. By default returns the stream contents but can be overridden to provide a custom hash key.
-
rename
(**mapping)¶ The rename method allows stream parameters to be allocated to new names to avoid clashes with other stream parameters of the same name. Returns a new clone of the stream instance with the specified name mapping.
-
reset
()¶ Resets stream parameters to their defaults.
-
property
subscribers
¶ Property returning the subscriber list
-
transform
()¶ Method that can be overwritten by subclasses to process the parameter values before renaming is applied. Returns a dictionary of transformed parameters.
-
classmethod
trigger
(streams)¶ Given a list of streams, collect all the stream parameters into a dictionary and pass it to the union set of subscribers.
Passing multiple streams at once to trigger can be useful when a subscriber may be set multiple times across streams but only needs to be called once.
-
update
(**kwargs)¶ The update method updates the stream parameters (without any renaming applied) in response to some event. If the stream has a custom transform method, this is applied to transform the parameter values accordingly.
To update and trigger, use the event method.
-
class
holoviews.streams.
PressUp
(linked=True, **params)[source]¶ Bases:
holoviews.streams.PointerXY
The x/y position of a mouse pressup event in data coordinates.
Parameters inherited from:
-
add_subscriber
(subscriber, precedence=0)¶ Register a callable subscriber to this stream which will be invoked either when event is called or when this stream is passed to the trigger classmethod.
Precedence allows the subscriber ordering to be controlled. Users should only add subscribers with precedence between zero and one while HoloViews itself reserves the use of higher precedence values. Subscribers with high precedence are invoked later than ones with low precedence.
-
clear
(policy='all')¶ Clear all subscribers registered to this stream.
The default policy of ‘all’ clears all subscribers. If policy is set to ‘user’, only subscribers defined by the user are cleared (precedence between zero and one). A policy of ‘internal’ clears subscribers with precedence greater than unity used internally by HoloViews.
-
clone
()¶ Return new stream with identical properties and no subscribers
-
classmethod
define
(name, **kwargs)¶ Utility to quickly and easily declare Stream classes. Designed for interactive use such as notebooks and shouldn’t replace parameterized class definitions in source code that is imported.
Takes a stream class name and a set of keywords where each keyword becomes a parameter. If the value is already a parameter, it is simply used otherwise the appropriate parameter type is inferred and declared, using the value as the default.
Supported types: bool, int, float, str, dict, tuple and list
-
event
(**kwargs)¶ Update the stream parameters and trigger an event.
-
property
hashkey
¶ The object the memoization hash is computed from. By default returns the stream contents but can be overridden to provide a custom hash key.
-
rename
(**mapping)¶ The rename method allows stream parameters to be allocated to new names to avoid clashes with other stream parameters of the same name. Returns a new clone of the stream instance with the specified name mapping.
-
reset
()¶ Resets stream parameters to their defaults.
-
property
subscribers
¶ Property returning the subscriber list
-
transform
()¶ Method that can be overwritten by subclasses to process the parameter values before renaming is applied. Returns a dictionary of transformed parameters.
-
classmethod
trigger
(streams)¶ Given a list of streams, collect all the stream parameters into a dictionary and pass it to the union set of subscribers.
Passing multiple streams at once to trigger can be useful when a subscriber may be set multiple times across streams but only needs to be called once.
-
update
(**kwargs)¶ The update method updates the stream parameters (without any renaming applied) in response to some event. If the stream has a custom transform method, this is applied to transform the parameter values accordingly.
To update and trigger, use the event method.
-
-
class
holoviews.streams.
RangeX
(linked=True, **params)[source]¶ Bases:
holoviews.streams.LinkedStream
Axis range along x-axis in data coordinates.
x_range
= param.Tuple(length=2)Range of the x-axis of a plot in data coordinates
-
add_subscriber
(subscriber, precedence=0)¶ Register a callable subscriber to this stream which will be invoked either when event is called or when this stream is passed to the trigger classmethod.
Precedence allows the subscriber ordering to be controlled. Users should only add subscribers with precedence between zero and one while HoloViews itself reserves the use of higher precedence values. Subscribers with high precedence are invoked later than ones with low precedence.
-
clear
(policy='all')¶ Clear all subscribers registered to this stream.
The default policy of ‘all’ clears all subscribers. If policy is set to ‘user’, only subscribers defined by the user are cleared (precedence between zero and one). A policy of ‘internal’ clears subscribers with precedence greater than unity used internally by HoloViews.
-
clone
()¶ Return new stream with identical properties and no subscribers
-
classmethod
define
(name, **kwargs)¶ Utility to quickly and easily declare Stream classes. Designed for interactive use such as notebooks and shouldn’t replace parameterized class definitions in source code that is imported.
Takes a stream class name and a set of keywords where each keyword becomes a parameter. If the value is already a parameter, it is simply used otherwise the appropriate parameter type is inferred and declared, using the value as the default.
Supported types: bool, int, float, str, dict, tuple and list
-
event
(**kwargs)¶ Update the stream parameters and trigger an event.
-
property
hashkey
¶ The object the memoization hash is computed from. By default returns the stream contents but can be overridden to provide a custom hash key.
-
rename
(**mapping)¶ The rename method allows stream parameters to be allocated to new names to avoid clashes with other stream parameters of the same name. Returns a new clone of the stream instance with the specified name mapping.
-
reset
()¶ Resets stream parameters to their defaults.
-
property
subscribers
¶ Property returning the subscriber list
-
transform
()¶ Method that can be overwritten by subclasses to process the parameter values before renaming is applied. Returns a dictionary of transformed parameters.
-
classmethod
trigger
(streams)¶ Given a list of streams, collect all the stream parameters into a dictionary and pass it to the union set of subscribers.
Passing multiple streams at once to trigger can be useful when a subscriber may be set multiple times across streams but only needs to be called once.
-
update
(**kwargs)¶ The update method updates the stream parameters (without any renaming applied) in response to some event. If the stream has a custom transform method, this is applied to transform the parameter values accordingly.
To update and trigger, use the event method.
-
class
holoviews.streams.
RangeXY
(linked=True, **params)[source]¶ Bases:
holoviews.streams.LinkedStream
Axis ranges along x- and y-axis in data coordinates.
x_range
= param.Tuple(length=2)Range of the x-axis of a plot in data coordinates
y_range
= param.Tuple(length=2)Range of the y-axis of a plot in data coordinates
-
add_subscriber
(subscriber, precedence=0)¶ Register a callable subscriber to this stream which will be invoked either when event is called or when this stream is passed to the trigger classmethod.
Precedence allows the subscriber ordering to be controlled. Users should only add subscribers with precedence between zero and one while HoloViews itself reserves the use of higher precedence values. Subscribers with high precedence are invoked later than ones with low precedence.
-
clear
(policy='all')¶ Clear all subscribers registered to this stream.
The default policy of ‘all’ clears all subscribers. If policy is set to ‘user’, only subscribers defined by the user are cleared (precedence between zero and one). A policy of ‘internal’ clears subscribers with precedence greater than unity used internally by HoloViews.
-
clone
()¶ Return new stream with identical properties and no subscribers
-
classmethod
define
(name, **kwargs)¶ Utility to quickly and easily declare Stream classes. Designed for interactive use such as notebooks and shouldn’t replace parameterized class definitions in source code that is imported.
Takes a stream class name and a set of keywords where each keyword becomes a parameter. If the value is already a parameter, it is simply used otherwise the appropriate parameter type is inferred and declared, using the value as the default.
Supported types: bool, int, float, str, dict, tuple and list
-
event
(**kwargs)¶ Update the stream parameters and trigger an event.
-
property
hashkey
¶ The object the memoization hash is computed from. By default returns the stream contents but can be overridden to provide a custom hash key.
-
rename
(**mapping)¶ The rename method allows stream parameters to be allocated to new names to avoid clashes with other stream parameters of the same name. Returns a new clone of the stream instance with the specified name mapping.
-
reset
()¶ Resets stream parameters to their defaults.
-
property
subscribers
¶ Property returning the subscriber list
-
transform
()¶ Method that can be overwritten by subclasses to process the parameter values before renaming is applied. Returns a dictionary of transformed parameters.
-
classmethod
trigger
(streams)¶ Given a list of streams, collect all the stream parameters into a dictionary and pass it to the union set of subscribers.
Passing multiple streams at once to trigger can be useful when a subscriber may be set multiple times across streams but only needs to be called once.
-
update
(**kwargs)¶ The update method updates the stream parameters (without any renaming applied) in response to some event. If the stream has a custom transform method, this is applied to transform the parameter values accordingly.
To update and trigger, use the event method.
-
class
holoviews.streams.
RangeY
(linked=True, **params)[source]¶ Bases:
holoviews.streams.LinkedStream
Axis range along y-axis in data coordinates.
y_range
= param.Tuple(length=2)Range of the y-axis of a plot in data coordinates
-
add_subscriber
(subscriber, precedence=0)¶ Register a callable subscriber to this stream which will be invoked either when event is called or when this stream is passed to the trigger classmethod.
Precedence allows the subscriber ordering to be controlled. Users should only add subscribers with precedence between zero and one while HoloViews itself reserves the use of higher precedence values. Subscribers with high precedence are invoked later than ones with low precedence.
-
clear
(policy='all')¶ Clear all subscribers registered to this stream.
The default policy of ‘all’ clears all subscribers. If policy is set to ‘user’, only subscribers defined by the user are cleared (precedence between zero and one). A policy of ‘internal’ clears subscribers with precedence greater than unity used internally by HoloViews.
-
clone
()¶ Return new stream with identical properties and no subscribers
-
classmethod
define
(name, **kwargs)¶ Utility to quickly and easily declare Stream classes. Designed for interactive use such as notebooks and shouldn’t replace parameterized class definitions in source code that is imported.
Takes a stream class name and a set of keywords where each keyword becomes a parameter. If the value is already a parameter, it is simply used otherwise the appropriate parameter type is inferred and declared, using the value as the default.
Supported types: bool, int, float, str, dict, tuple and list
-
event
(**kwargs)¶ Update the stream parameters and trigger an event.
-
property
hashkey
¶ The object the memoization hash is computed from. By default returns the stream contents but can be overridden to provide a custom hash key.
-
rename
(**mapping)¶ The rename method allows stream parameters to be allocated to new names to avoid clashes with other stream parameters of the same name. Returns a new clone of the stream instance with the specified name mapping.
-
reset
()¶ Resets stream parameters to their defaults.
-
property
subscribers
¶ Property returning the subscriber list
-
transform
()¶ Method that can be overwritten by subclasses to process the parameter values before renaming is applied. Returns a dictionary of transformed parameters.
-
classmethod
trigger
(streams)¶ Given a list of streams, collect all the stream parameters into a dictionary and pass it to the union set of subscribers.
Passing multiple streams at once to trigger can be useful when a subscriber may be set multiple times across streams but only needs to be called once.
-
update
(**kwargs)¶ The update method updates the stream parameters (without any renaming applied) in response to some event. If the stream has a custom transform method, this is applied to transform the parameter values accordingly.
To update and trigger, use the event method.
-
class
holoviews.streams.
SelectMode
(linked=True, **params)[source]¶ Bases:
holoviews.streams.LinkedStream
mode
= param.ObjectSelector(default=’replace’, objects=[‘replace’, ‘append’, ‘intersect’, ‘subtract’])Defines what should happen when a new selection is made. The default is to replace the existing selection. Other options are to append to theselection, intersect with it or subtract from it.
-
add_subscriber
(subscriber, precedence=0)¶ Register a callable subscriber to this stream which will be invoked either when event is called or when this stream is passed to the trigger classmethod.
Precedence allows the subscriber ordering to be controlled. Users should only add subscribers with precedence between zero and one while HoloViews itself reserves the use of higher precedence values. Subscribers with high precedence are invoked later than ones with low precedence.
-
clear
(policy='all')¶ Clear all subscribers registered to this stream.
The default policy of ‘all’ clears all subscribers. If policy is set to ‘user’, only subscribers defined by the user are cleared (precedence between zero and one). A policy of ‘internal’ clears subscribers with precedence greater than unity used internally by HoloViews.
-
clone
()¶ Return new stream with identical properties and no subscribers
-
classmethod
define
(name, **kwargs)¶ Utility to quickly and easily declare Stream classes. Designed for interactive use such as notebooks and shouldn’t replace parameterized class definitions in source code that is imported.
Takes a stream class name and a set of keywords where each keyword becomes a parameter. If the value is already a parameter, it is simply used otherwise the appropriate parameter type is inferred and declared, using the value as the default.
Supported types: bool, int, float, str, dict, tuple and list
-
event
(**kwargs)¶ Update the stream parameters and trigger an event.
-
property
hashkey
¶ The object the memoization hash is computed from. By default returns the stream contents but can be overridden to provide a custom hash key.
-
rename
(**mapping)¶ The rename method allows stream parameters to be allocated to new names to avoid clashes with other stream parameters of the same name. Returns a new clone of the stream instance with the specified name mapping.
-
reset
()¶ Resets stream parameters to their defaults.
-
property
subscribers
¶ Property returning the subscriber list
-
transform
()¶ Method that can be overwritten by subclasses to process the parameter values before renaming is applied. Returns a dictionary of transformed parameters.
-
classmethod
trigger
(streams)¶ Given a list of streams, collect all the stream parameters into a dictionary and pass it to the union set of subscribers.
Passing multiple streams at once to trigger can be useful when a subscriber may be set multiple times across streams but only needs to be called once.
-
update
(**kwargs)¶ The update method updates the stream parameters (without any renaming applied) in response to some event. If the stream has a custom transform method, this is applied to transform the parameter values accordingly.
To update and trigger, use the event method.
-
class
holoviews.streams.
Selection1D
(linked=True, **params)[source]¶ Bases:
holoviews.streams.LinkedStream
A stream representing a 1D selection of objects by their index.
index
= param.List(bounds=(0, None), default=[])Indices into a 1D datastructure.
-
add_subscriber
(subscriber, precedence=0)¶ Register a callable subscriber to this stream which will be invoked either when event is called or when this stream is passed to the trigger classmethod.
Precedence allows the subscriber ordering to be controlled. Users should only add subscribers with precedence between zero and one while HoloViews itself reserves the use of higher precedence values. Subscribers with high precedence are invoked later than ones with low precedence.
-
clear
(policy='all')¶ Clear all subscribers registered to this stream.
The default policy of ‘all’ clears all subscribers. If policy is set to ‘user’, only subscribers defined by the user are cleared (precedence between zero and one). A policy of ‘internal’ clears subscribers with precedence greater than unity used internally by HoloViews.
-
clone
()¶ Return new stream with identical properties and no subscribers
-
classmethod
define
(name, **kwargs)¶ Utility to quickly and easily declare Stream classes. Designed for interactive use such as notebooks and shouldn’t replace parameterized class definitions in source code that is imported.
Takes a stream class name and a set of keywords where each keyword becomes a parameter. If the value is already a parameter, it is simply used otherwise the appropriate parameter type is inferred and declared, using the value as the default.
Supported types: bool, int, float, str, dict, tuple and list
-
event
(**kwargs)¶ Update the stream parameters and trigger an event.
-
property
hashkey
¶ The object the memoization hash is computed from. By default returns the stream contents but can be overridden to provide a custom hash key.
-
rename
(**mapping)¶ The rename method allows stream parameters to be allocated to new names to avoid clashes with other stream parameters of the same name. Returns a new clone of the stream instance with the specified name mapping.
-
reset
()¶ Resets stream parameters to their defaults.
-
property
subscribers
¶ Property returning the subscriber list
-
transform
()¶ Method that can be overwritten by subclasses to process the parameter values before renaming is applied. Returns a dictionary of transformed parameters.
-
classmethod
trigger
(streams)¶ Given a list of streams, collect all the stream parameters into a dictionary and pass it to the union set of subscribers.
Passing multiple streams at once to trigger can be useful when a subscriber may be set multiple times across streams but only needs to be called once.
-
update
(**kwargs)¶ The update method updates the stream parameters (without any renaming applied) in response to some event. If the stream has a custom transform method, this is applied to transform the parameter values accordingly.
To update and trigger, use the event method.
-
class
holoviews.streams.
SelectionExpr
(source, include_region=True, **params)[source]¶ Bases:
holoviews.streams.Derived
selection_expr
= param.Parameter()bbox
= param.Dict(class_=<class ‘dict’>)region_element
= param.Parameter()-
add_subscriber
(subscriber, precedence=0)¶ Register a callable subscriber to this stream which will be invoked either when event is called or when this stream is passed to the trigger classmethod.
Precedence allows the subscriber ordering to be controlled. Users should only add subscribers with precedence between zero and one while HoloViews itself reserves the use of higher precedence values. Subscribers with high precedence are invoked later than ones with low precedence.
-
append_input_stream
(stream)¶ Add a new input stream
-
clear
(policy='all')¶ Clear all subscribers registered to this stream.
The default policy of ‘all’ clears all subscribers. If policy is set to ‘user’, only subscribers defined by the user are cleared (precedence between zero and one). A policy of ‘internal’ clears subscribers with precedence greater than unity used internally by HoloViews.
-
property
constants
¶ Dict of constants for this instance that should be passed to transform_function
Constant values must not change in response to changes in the values of the input streams. They may, however, change in response to other stream property updates. For example, these values may change if the Stream’s source element changes
-
classmethod
define
(name, **kwargs)¶ Utility to quickly and easily declare Stream classes. Designed for interactive use such as notebooks and shouldn’t replace parameterized class definitions in source code that is imported.
Takes a stream class name and a set of keywords where each keyword becomes a parameter. If the value is already a parameter, it is simply used otherwise the appropriate parameter type is inferred and declared, using the value as the default.
Supported types: bool, int, float, str, dict, tuple and list
-
event
(**kwargs)¶ Update the stream parameters and trigger an event.
-
property
hashkey
¶ The object the memoization hash is computed from. By default returns the stream contents but can be overridden to provide a custom hash key.
-
rename
(**mapping)¶ The rename method allows stream parameters to be allocated to new names to avoid clashes with other stream parameters of the same name. Returns a new clone of the stream instance with the specified name mapping.
-
reset
()¶ Resets stream parameters to their defaults.
-
property
subscribers
¶ Property returning the subscriber list
-
transform
()[source]¶ Method that can be overwritten by subclasses to process the parameter values before renaming is applied. Returns a dictionary of transformed parameters.
-
classmethod
transform_function
(stream_values, constants)[source]¶ Pure function that transforms input stream param values into the param values of this Derived stream.
- Args:
- stream_values: list of dict
Current values of the stream params for each input_stream
- constants: dict
Constants as returned by the constants property of an instance of this stream type.
- Returns: dict
dict of new Stream values where the keys match this stream’s params
-
classmethod
trigger
(streams)¶ Given a list of streams, collect all the stream parameters into a dictionary and pass it to the union set of subscribers.
Passing multiple streams at once to trigger can be useful when a subscriber may be set multiple times across streams but only needs to be called once.
-
update
(**kwargs)¶ The update method updates the stream parameters (without any renaming applied) in response to some event. If the stream has a custom transform method, this is applied to transform the parameter values accordingly.
To update and trigger, use the event method.
-
-
class
holoviews.streams.
SelectionExprSequence
(source, mode='overwrite', include_region=True, **params)[source]¶ Bases:
holoviews.streams.Derived
selection_expr
= param.Parameter()region_element
= param.Parameter()-
add_subscriber
(subscriber, precedence=0)¶ Register a callable subscriber to this stream which will be invoked either when event is called or when this stream is passed to the trigger classmethod.
Precedence allows the subscriber ordering to be controlled. Users should only add subscribers with precedence between zero and one while HoloViews itself reserves the use of higher precedence values. Subscribers with high precedence are invoked later than ones with low precedence.
-
append_input_stream
(stream)¶ Add a new input stream
-
clear
(policy='all')¶ Clear all subscribers registered to this stream.
The default policy of ‘all’ clears all subscribers. If policy is set to ‘user’, only subscribers defined by the user are cleared (precedence between zero and one). A policy of ‘internal’ clears subscribers with precedence greater than unity used internally by HoloViews.
-
clone
()¶ Return new stream with identical properties and no subscribers
-
property
constants
¶ Dict of constants for this instance that should be passed to transform_function
Constant values must not change in response to changes in the values of the input streams. They may, however, change in response to other stream property updates. For example, these values may change if the Stream’s source element changes
-
classmethod
define
(name, **kwargs)¶ Utility to quickly and easily declare Stream classes. Designed for interactive use such as notebooks and shouldn’t replace parameterized class definitions in source code that is imported.
Takes a stream class name and a set of keywords where each keyword becomes a parameter. If the value is already a parameter, it is simply used otherwise the appropriate parameter type is inferred and declared, using the value as the default.
Supported types: bool, int, float, str, dict, tuple and list
-
event
(**kwargs)¶ Update the stream parameters and trigger an event.
-
property
hashkey
¶ The object the memoization hash is computed from. By default returns the stream contents but can be overridden to provide a custom hash key.
-
rename
(**mapping)¶ The rename method allows stream parameters to be allocated to new names to avoid clashes with other stream parameters of the same name. Returns a new clone of the stream instance with the specified name mapping.
-
property
subscribers
¶ Property returning the subscriber list
-
transform
()¶ Method that can be overwritten by subclasses to process the parameter values before renaming is applied. Returns a dictionary of transformed parameters.
-
classmethod
transform_function
(stream_values, constants)[source]¶ Pure function that transforms input stream param values into the param values of this Derived stream.
- Args:
- stream_values: list of dict
Current values of the stream params for each input_stream
- constants: dict
Constants as returned by the constants property of an instance of this stream type.
- Returns: dict
dict of new Stream values where the keys match this stream’s params
-
classmethod
trigger
(streams)¶ Given a list of streams, collect all the stream parameters into a dictionary and pass it to the union set of subscribers.
Passing multiple streams at once to trigger can be useful when a subscriber may be set multiple times across streams but only needs to be called once.
-
update
(**kwargs)¶ The update method updates the stream parameters (without any renaming applied) in response to some event. If the stream has a custom transform method, this is applied to transform the parameter values accordingly.
To update and trigger, use the event method.
-
-
class
holoviews.streams.
SelectionXY
(linked=True, **params)[source]¶ Bases:
holoviews.streams.BoundsXY
A stream representing the selection along the x-axis and y-axis. Unlike a BoundsXY stream, this stream returns range or categorical selections.
Parameters inherited from:
holoviews.streams.BoundsXY
: boundsx_selection
= param.ClassSelector(class_=(<class ‘tuple’>, <class ‘list’>))The current selection along the x-axis, either a numerical range defined as a tuple or a list of categories.
y_selection
= param.ClassSelector(class_=(<class ‘tuple’>, <class ‘list’>))The current selection along the y-axis, either a numerical range defined as a tuple or a list of categories.
-
add_subscriber
(subscriber, precedence=0)¶ Register a callable subscriber to this stream which will be invoked either when event is called or when this stream is passed to the trigger classmethod.
Precedence allows the subscriber ordering to be controlled. Users should only add subscribers with precedence between zero and one while HoloViews itself reserves the use of higher precedence values. Subscribers with high precedence are invoked later than ones with low precedence.
-
clear
(policy='all')¶ Clear all subscribers registered to this stream.
The default policy of ‘all’ clears all subscribers. If policy is set to ‘user’, only subscribers defined by the user are cleared (precedence between zero and one). A policy of ‘internal’ clears subscribers with precedence greater than unity used internally by HoloViews.
-
clone
()¶ Return new stream with identical properties and no subscribers
-
classmethod
define
(name, **kwargs)¶ Utility to quickly and easily declare Stream classes. Designed for interactive use such as notebooks and shouldn’t replace parameterized class definitions in source code that is imported.
Takes a stream class name and a set of keywords where each keyword becomes a parameter. If the value is already a parameter, it is simply used otherwise the appropriate parameter type is inferred and declared, using the value as the default.
Supported types: bool, int, float, str, dict, tuple and list
-
event
(**kwargs)¶ Update the stream parameters and trigger an event.
-
property
hashkey
¶ The object the memoization hash is computed from. By default returns the stream contents but can be overridden to provide a custom hash key.
-
rename
(**mapping)¶ The rename method allows stream parameters to be allocated to new names to avoid clashes with other stream parameters of the same name. Returns a new clone of the stream instance with the specified name mapping.
-
reset
()¶ Resets stream parameters to their defaults.
-
property
subscribers
¶ Property returning the subscriber list
-
transform
()¶ Method that can be overwritten by subclasses to process the parameter values before renaming is applied. Returns a dictionary of transformed parameters.
-
classmethod
trigger
(streams)¶ Given a list of streams, collect all the stream parameters into a dictionary and pass it to the union set of subscribers.
Passing multiple streams at once to trigger can be useful when a subscriber may be set multiple times across streams but only needs to be called once.
-
update
(**kwargs)¶ The update method updates the stream parameters (without any renaming applied) in response to some event. If the stream has a custom transform method, this is applied to transform the parameter values accordingly.
To update and trigger, use the event method.
-
class
holoviews.streams.
SingleTap
(linked=True, **params)[source]¶ Bases:
holoviews.streams.PointerXY
The x/y-position of a single tap or click in data coordinates.
Parameters inherited from:
-
add_subscriber
(subscriber, precedence=0)¶ Register a callable subscriber to this stream which will be invoked either when event is called or when this stream is passed to the trigger classmethod.
Precedence allows the subscriber ordering to be controlled. Users should only add subscribers with precedence between zero and one while HoloViews itself reserves the use of higher precedence values. Subscribers with high precedence are invoked later than ones with low precedence.
-
clear
(policy='all')¶ Clear all subscribers registered to this stream.
The default policy of ‘all’ clears all subscribers. If policy is set to ‘user’, only subscribers defined by the user are cleared (precedence between zero and one). A policy of ‘internal’ clears subscribers with precedence greater than unity used internally by HoloViews.
-
clone
()¶ Return new stream with identical properties and no subscribers
-
classmethod
define
(name, **kwargs)¶ Utility to quickly and easily declare Stream classes. Designed for interactive use such as notebooks and shouldn’t replace parameterized class definitions in source code that is imported.
Takes a stream class name and a set of keywords where each keyword becomes a parameter. If the value is already a parameter, it is simply used otherwise the appropriate parameter type is inferred and declared, using the value as the default.
Supported types: bool, int, float, str, dict, tuple and list
-
event
(**kwargs)¶ Update the stream parameters and trigger an event.
-
property
hashkey
¶ The object the memoization hash is computed from. By default returns the stream contents but can be overridden to provide a custom hash key.
-
rename
(**mapping)¶ The rename method allows stream parameters to be allocated to new names to avoid clashes with other stream parameters of the same name. Returns a new clone of the stream instance with the specified name mapping.
-
reset
()¶ Resets stream parameters to their defaults.
-
property
subscribers
¶ Property returning the subscriber list
-
transform
()¶ Method that can be overwritten by subclasses to process the parameter values before renaming is applied. Returns a dictionary of transformed parameters.
-
classmethod
trigger
(streams)¶ Given a list of streams, collect all the stream parameters into a dictionary and pass it to the union set of subscribers.
Passing multiple streams at once to trigger can be useful when a subscriber may be set multiple times across streams but only needs to be called once.
-
update
(**kwargs)¶ The update method updates the stream parameters (without any renaming applied) in response to some event. If the stream has a custom transform method, this is applied to transform the parameter values accordingly.
To update and trigger, use the event method.
-
-
class
holoviews.streams.
Stream
(rename={}, source=None, subscribers=[], linked=False, transient=False, **params)[source]¶ Bases:
param.parameterized.Parameterized
A Stream is simply a parameterized object with parameters that change over time in response to update events and may trigger downstream events on its subscribers. The Stream parameters can be updated using the update method, which will optionally trigger the stream. This will notify the subscribers which may be supplied as a list of callables or added later using the add_subscriber method. The subscribers will be passed a dictionary mapping of the parameters of the stream, which are available on the instance as the
contents
.Depending on the plotting backend certain streams may interactively subscribe to events and changes by the plotting backend. For this purpose use the LinkedStream baseclass, which enables the linked option by default. A source for the linking may be supplied to the constructor in the form of another viewable object specifying which part of a plot the data should come from.
The transient option allows treating stream events as discrete updates, resetting the parameters to their default after the stream has been triggered. A downstream callback can therefore determine whether a stream is active by checking whether the stream values match the default (usually None).
The Stream class is meant for subclassing and subclasses should generally add one or more parameters but may also override the transform and reset method to preprocess parameters before they are passed to subscribers and reset them using custom logic respectively.
-
add_subscriber
(subscriber, precedence=0)[source]¶ Register a callable subscriber to this stream which will be invoked either when event is called or when this stream is passed to the trigger classmethod.
Precedence allows the subscriber ordering to be controlled. Users should only add subscribers with precedence between zero and one while HoloViews itself reserves the use of higher precedence values. Subscribers with high precedence are invoked later than ones with low precedence.
-
clear
(policy='all')[source]¶ Clear all subscribers registered to this stream.
The default policy of ‘all’ clears all subscribers. If policy is set to ‘user’, only subscribers defined by the user are cleared (precedence between zero and one). A policy of ‘internal’ clears subscribers with precedence greater than unity used internally by HoloViews.
-
classmethod
define
(name, **kwargs)[source]¶ Utility to quickly and easily declare Stream classes. Designed for interactive use such as notebooks and shouldn’t replace parameterized class definitions in source code that is imported.
Takes a stream class name and a set of keywords where each keyword becomes a parameter. If the value is already a parameter, it is simply used otherwise the appropriate parameter type is inferred and declared, using the value as the default.
Supported types: bool, int, float, str, dict, tuple and list
-
property
hashkey
¶ The object the memoization hash is computed from. By default returns the stream contents but can be overridden to provide a custom hash key.
-
rename
(**mapping)[source]¶ The rename method allows stream parameters to be allocated to new names to avoid clashes with other stream parameters of the same name. Returns a new clone of the stream instance with the specified name mapping.
-
property
subscribers
¶ Property returning the subscriber list
-
transform
()[source]¶ Method that can be overwritten by subclasses to process the parameter values before renaming is applied. Returns a dictionary of transformed parameters.
-
classmethod
trigger
(streams)[source]¶ Given a list of streams, collect all the stream parameters into a dictionary and pass it to the union set of subscribers.
Passing multiple streams at once to trigger can be useful when a subscriber may be set multiple times across streams but only needs to be called once.
-
-
class
holoviews.streams.
Tap
(linked=True, **params)[source]¶ Bases:
holoviews.streams.PointerXY
The x/y-position of a tap or click in data coordinates.
Parameters inherited from:
-
add_subscriber
(subscriber, precedence=0)¶ Register a callable subscriber to this stream which will be invoked either when event is called or when this stream is passed to the trigger classmethod.
Precedence allows the subscriber ordering to be controlled. Users should only add subscribers with precedence between zero and one while HoloViews itself reserves the use of higher precedence values. Subscribers with high precedence are invoked later than ones with low precedence.
-
clear
(policy='all')¶ Clear all subscribers registered to this stream.
The default policy of ‘all’ clears all subscribers. If policy is set to ‘user’, only subscribers defined by the user are cleared (precedence between zero and one). A policy of ‘internal’ clears subscribers with precedence greater than unity used internally by HoloViews.
-
clone
()¶ Return new stream with identical properties and no subscribers
-
classmethod
define
(name, **kwargs)¶ Utility to quickly and easily declare Stream classes. Designed for interactive use such as notebooks and shouldn’t replace parameterized class definitions in source code that is imported.
Takes a stream class name and a set of keywords where each keyword becomes a parameter. If the value is already a parameter, it is simply used otherwise the appropriate parameter type is inferred and declared, using the value as the default.
Supported types: bool, int, float, str, dict, tuple and list
-
event
(**kwargs)¶ Update the stream parameters and trigger an event.
-
property
hashkey
¶ The object the memoization hash is computed from. By default returns the stream contents but can be overridden to provide a custom hash key.
-
rename
(**mapping)¶ The rename method allows stream parameters to be allocated to new names to avoid clashes with other stream parameters of the same name. Returns a new clone of the stream instance with the specified name mapping.
-
reset
()¶ Resets stream parameters to their defaults.
-
property
subscribers
¶ Property returning the subscriber list
-
transform
()¶ Method that can be overwritten by subclasses to process the parameter values before renaming is applied. Returns a dictionary of transformed parameters.
-
classmethod
trigger
(streams)¶ Given a list of streams, collect all the stream parameters into a dictionary and pass it to the union set of subscribers.
Passing multiple streams at once to trigger can be useful when a subscriber may be set multiple times across streams but only needs to be called once.
-
update
(**kwargs)¶ The update method updates the stream parameters (without any renaming applied) in response to some event. If the stream has a custom transform method, this is applied to transform the parameter values accordingly.
To update and trigger, use the event method.
-
-
holoviews.streams.
triggering_streams
(streams)[source]¶ Temporarily declares the streams as being in a triggered state. Needed by DynamicMap to determine whether to memoize on a Callable, i.e. if a stream has memoization disabled and is in triggered state Callable should disable lookup in the memoization cache. This is done by the dynamicmap_memoization context manager.