using PlutoUIA static report
Not every notebook needs to be interactive. This one just computes some numbers and shows them — a clean, read-only page. Snapshot labels it static in the sidebar (it uses no @bind), and it still runs the real Julia to produce the values below.
The floating panel on the right is a PlutoUI.TableOfContents() — it builds itself from the markdown headers in the notebook.
The data
data = [4, 8, 15, 16, 23, 42]stats = (
n = length(data),
sum = sum(data),
mean = round(sum(data) / length(data); digits = 2),
min = minimum(data),
max = maximum(data),
)Summary
Summary of data = 4815162342:
| metric | value |
|---|---|
| count | 6 |
| sum | 108 |
| mean | 18.0 |
| min | 4 |
| max | 42 |
Computed when this notebook was published — then frozen as static HTML.