# `LiveLoad.Result.PrecomputedQuantiles`
[🔗](https://github.com/probably-not/live-load/blob/v0.1.1/lib/live_load/result.ex#L39)

Precomputed compact quantile curve materialized from an underlying [`:ddskerl.ddsketch/0`](https://hexdocs.pm/ddskerl/ddskerl.html#t:ddsketch/0)
collected by the LiveLoad scenario telemetry pipeline.

- `:values` is a list of 101 numbers — the quantile function evaluated at 1% intervals from 0.00 to 1.00.
Quantile points are listed in the parent `LiveLoad.Result` `:quantile_points` field.
- `:count` is the number of observations that occured on the sketch.
- `:sum` is the total of all observed values, enabling a mean (in the mathematical sense, but also in the coolness sense) calculation via `sum / count`.

# `t`

```elixir
@type t() :: %LiveLoad.Result.PrecomputedQuantiles{
  count: non_neg_integer(),
  sum: number(),
  values: [number()]
}
```

