flowstdlib 1.0.0

The standard library of functions and flows for 'flow' programs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
## Histogram Chart (//flowstdlib/charts/histogram)
Render an array of numbers as a bar chart image (256x128 pixel grayscale).
Each element becomes a vertical bar, height proportional to value.
Black bars on a white background.

Useful for visualizing frequency distributions, histograms, spectra, etc.

### Include using
```toml
[[process]]
source = "lib://flowstdlib/charts/histogram"
```