Snapshot / Snapshot Demos Repo ↗
using PlutoUI

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:

metricvalue
count6
sum108
mean18.0
min4
max42

Computed when this notebook was published — then frozen as static HTML.