Skip to content

Documents · Verb reference

show_cube_lexcube

Render a Lexcube widget as a side-effect and return the original cube.

Callable type: Grammar verb / pipe stage · Browse: Output and side effects

Usage

from cubedynamics import verbs as v
v.show_cube_lexcube(**kwargs)

Arguments

Argument Meaning Default
kwargs Forwarded directly to :func:cubedynamics.viz.show_cube_lexcube. forwarded arguments

Accepts

Side-effect verb (cube → cube, produces output). Returns a pipe-ready callable that displays an interactive Lexcube view while keeping the cube unchanged in the pipe.

Returns

Verb Pipe-ready verb when used without immediate da; otherwise the original cube after rendering.

Order / grammar behavior

Side-effect verb (cube → cube, produces output). Returns a pipe-ready callable that displays an interactive Lexcube view while keeping the cube unchanged in the pipe.

Minimal example

A standalone, reviewed real-data example is not yet available for this helper. See the linked workflow and implementation notes; this reference does not substitute generated observations or invent an executable example.

Works with

Side-effect verb (cube → cube, produces output). Returns a pipe-ready callable that displays an interactive Lexcube view while keeping the cube unchanged in the pipe.

See also

Implementation notes

The incoming object must represent a 3D cube with dims (time, y, x). Reducers such as :func:mean, :func:variance, :func:anomaly, and :func:zscore keep the cube Lexcube-ready when keep_dim=True. Dask backing is preserved and only a light viewer object is created.

Implementation source. Signatures and descriptions on this page are generated from this checkout, not hand-maintained copies.