using PlutoUIThe 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.