or run

npx @tessl/cli init
Log in

Version

Tile

Overview

Evals

Files

Files

docs

array-creation.mdbinning-histogramming.mdcoordinate-systems.mdcore-data-structures.mdindex.mdinput-output.mdmathematical-operations.mdreduction-operations.mdscipy-integration.mdshape-operations.mdspatial-operations.mdtesting-utilities.mdunits-system.mdvisualization.md

visualization.mddocs/

0

# Visualization

1

2

Data visualization functions for interactive plotting, HTML representation, and table display.

3

4

## Capabilities

5

6

### Plotting Functions

7

8

Interactive plotting and visualization of scipp data structures.

9

10

```python { .api }

11

def plot(data, **kwargs):

12

"""

13

Create interactive plots of data

14

15

Args:

16

data (Variable or DataArray or Dataset): Data to plot

17

**kwargs: Plotting options and styling parameters

18

19

Returns:

20

Plot object for interactive display

21

"""

22

23

def show(data):

24

"""

25

Display data visualization

26

27

Args:

28

data (Variable or DataArray or Dataset): Data to display

29

"""

30

```

31

32

### HTML Representation

33

34

Functions for creating HTML representations of data for notebooks and web display.

35

36

```python { .api }

37

def make_html(data):

38

"""Create HTML representation of data"""

39

40

def to_html(data):

41

"""Convert data to HTML format"""

42

43

def make_svg(data):

44

"""Create SVG representation"""

45

46

def table(data):

47

"""Display data as formatted table"""

48

```