holoviews.core.accessors module#
Module for accessor objects for viewable HoloViews objects.
- class holoviews.core.accessors.Apply(obj, mode=None)[source]#
Bases:
object
Utility to apply a function or operation to all viewable elements inside the object.
- aggregate(dimensions=None, function=None, spreadfn=None, **kwargs)[source]#
Applies a aggregate function to all ViewableElements.
See Also#
Dimensioned.aggregate()
andApply.__call__()
for more information.
- opts(*args, **kwargs)[source]#
Applies options to all ViewableElement objects.
See Also#
Dimensioned.opts()
andApply.__call__()
for more information.
- reduce(dimensions=None, function=None, spreadfn=None, **kwargs)[source]#
Applies a reduce function to all ViewableElement objects.
See Also#
Dimensioned.opts()
andApply.__call__()
for more information.
- sample(samples=None, bounds=None, **kwargs)[source]#
Samples element values at supplied coordinates.
See Also#
Dataset.sample()
andApply.__call__()
for more information.