🔍 Code Extractor

Search Components

Full-Text: Fast keyword matching | Semantic: AI-powered understanding of intent (finds similar concepts)

Search Results for "holoviews"

Found 29 matching component(s)

  • class Config_v4

    A configuration class that manages global HoloViews behavior settings, including deprecation warnings, default colormaps, and rendering parameters.

    File: /tf/active/vicechatdev/patches/util.py

    configuration settings global-state holoviews parameterized
  • function validate_dynamic_argspec

    Validates that a callback function has an appropriate signature to work with DynamicMap by checking its arguments against key dimensions (kdims) and stream parameters.

    File: /tf/active/vicechatdev/patches/util.py

    validation signature-checking callback-validation argument-inspection dynamic-mapping
  • function process_ellipses

    Expands an Ellipsis (...) in a __getitem__ key by replacing it with the appropriate number of empty slices (slice(None)) to match the dimensions of an object.

    File: /tf/active/vicechatdev/patches/util.py

    indexing ellipsis slicing multi-dimensional data-structures
  • function merge_dimensions

    Merges multiple lists of Dimension objects by combining their values while preserving unique dimensions and maintaining order of first appearance.

    File: /tf/active/vicechatdev/patches/util.py

    dimension-merging data-consolidation holoviews metadata-processing deduplication
  • function dimension_sort

    Sorts an ordered dictionary by specified dimension keys, supporting both standard Python tuple sorting and categorical ordering for dimensions with predefined values.

    File: /tf/active/vicechatdev/patches/util.py

    sorting categorical-data multi-dimensional data-processing dimensions
  • function get_overlay_spec

    Constructs a specification tuple for an Element within an Overlay by combining the element's type name, group, label, and key dimensions.

    File: /tf/active/vicechatdev/patches/util.py

    overlay specification element-identification data-structure tuple-construction
  • function layer_sort

    Computes a global topological ordering of layers from a HoloMap containing CompositeOverlay objects by analyzing layer dependencies and sorting them.

    File: /tf/active/vicechatdev/patches/util.py

    holoviews visualization layer-ordering topological-sort composite-overlay
  • function iterative_select

    Recursively selects subgroups from a hierarchical object structure by iterating through dimensions and applying select operations, avoiding duplication of selections.

    File: /tf/active/vicechatdev/patches/util.py

    hierarchical-selection recursive data-selection dimension-traversal holoviews
  • function get_spec

    Extracts a specification tuple from a labeled data object, consisting of the class name, group, and label attributes.

    File: /tf/active/vicechatdev/patches/util.py

    metadata specification data-object identification holoviews
  • function get_param_values

    Extracts parameter values from a data object, including key dimensions (kdims), value dimensions (vdims), label, and optionally the group if it differs from the default.

    File: /tf/active/vicechatdev/patches/util.py

    metadata-extraction parameter-extraction holoviews param object-cloning
  • function resolve_dependent_kwargs

    Resolves parameter dependencies in a dictionary by evaluating dependent parameter values, Parameterized instance methods, and parameterized functions.

    File: /tf/active/vicechatdev/patches/util.py

    parameter-resolution dependency-resolution parameterized param dictionary-processing
  • function get_ndmapping_label

    Retrieves the first non-auxiliary object's label attribute from an NdMapping data structure by iterating through its values.

    File: /tf/active/vicechatdev/patches/util.py

    holoviews ndmapping label-extraction metadata data-structure
  • function dimensionless_contents

    Filters stream parameters to return only those that are not associated with any of the provided key dimensions.

    File: /tf/active/vicechatdev/patches/util.py

    streams parameters filtering dimensions data-processing
  • function unbound_dimensions

    Filters a list of dimensions (kdims) to return only those that have not been associated with any of the provided streams.

    File: /tf/active/vicechatdev/patches/util.py

    streams dimensions filtering data-binding holoviews
  • function wrap_tuple_streams

    Fills in None values in a tuple with corresponding dimensioned stream values based on matching key dimension names.

    File: /tf/active/vicechatdev/patches/util.py

    tuple-manipulation stream-processing data-substitution dimension-mapping holoviews
  • function drop_streams

    Filters out dimensioned stream parameters from key dimensions (kdims) and their corresponding keys, returning cleaned dimensions and keys.

    File: /tf/active/vicechatdev/patches/util.py

    data-filtering streams dimensions data-processing tuple-manipulation
  • function get_unique_keys

    Extracts unique key values from an ndmapping object for specified dimensions, returning an iterator of unique tuples.

    File: /tf/active/vicechatdev/patches/util.py

    data-extraction multi-dimensional key-extraction deduplication iterator
  • function unpack_group

    Unpacks a pandas DataFrame group by iterating over rows and yielding tuples of keys and objects, with special handling for objects with 'kdims' attribute.

    File: /tf/active/vicechatdev/patches/util.py

    pandas dataframe groupby iterator generator
  • class ndmapping_groupby

    A parameterized function class that performs groupby operations on NdMapping objects, automatically using pandas for improved performance when available, falling back to pure Python implementation otherwise.

    File: /tf/active/vicechatdev/patches/util.py

    groupby data-processing ndmapping pandas multi-dimensional
  • function dimensioned_streams

    Filters and returns streams from a DynamicMap that have parameters matching the DynamicMap's key dimensions.

    File: /tf/active/vicechatdev/patches/util.py

    holoviews streams dynamicmap dimensions filtering
  • function expand_grid_coords

    Expands coordinates along a specified dimension of a gridded dataset into an N-dimensional array that matches the full dimensionality of the dataset.

    File: /tf/active/vicechatdev/patches/util.py

    grid coordinates broadcasting multidimensional cartesian-product
  • class HoloMap

    HoloMap is an n-dimensional mapping container that stores viewable elements or overlays indexed by tuple keys along declared key dimensions, enabling interactive exploration through widgets.

    File: /tf/active/vicechatdev/patches/spaces.py

    visualization mapping multi-dimensional interactive container
  • class Callable

    Callable is a wrapper class for callback functions used with DynamicMaps, providing memoization, stream management, and input/output tracking capabilities.

    File: /tf/active/vicechatdev/patches/spaces.py

    callback wrapper memoization caching dynamic-visualization
  • function get_nested_dmaps

    Recursively traverses a DynamicMap object to find and collect all nested DynamicMap instances that serve as inputs to the callback function.

    File: /tf/active/vicechatdev/patches/spaces.py

    holoviews DynamicMap recursion graph-traversal dependency-discovery
  • function get_nested_streams

    Recursively traverses a DynamicMap object to extract and return all unique Stream objects found within it and its nested DynamicMaps.

    File: /tf/active/vicechatdev/patches/spaces.py

    holoviews dynamicmap streams recursion traversal
  • function dynamicmap_memoization

    A context manager that temporarily controls memoization behavior of a callable object based on the state of associated streams, disabling memoization when transient streams are triggering.

    File: /tf/active/vicechatdev/patches/spaces.py

    context-manager memoization caching streams dynamic-map
  • class periodic_v1

    A utility class that manages periodic event updates for DynamicMap objects, allowing scheduled triggering of stream updates that can be started and stopped.

    File: /tf/active/vicechatdev/patches/spaces.py

    periodic scheduling animation streaming events
  • class GridSpace

    GridSpace is a container class for organizing elements in a 1D or 2D grid structure with floating-point keys, ensuring all contained elements are of the same type.

    File: /tf/active/vicechatdev/patches/spaces.py

    grid layout container mapping 2D-grid
  • class GridMatrix

    GridMatrix is a container class for heterogeneous Element types arranged in a grid layout where axes don't represent coordinate space but are used to plot various dimensions against each other.

    File: /tf/active/vicechatdev/patches/spaces.py

    visualization grid-layout container multi-dimensional plotting

Search Examples