# `Benchee.CollectionData`
[🔗](https://github.com/bencheeorg/benchee/blob/1.5.1/lib/benchee/collection_data.ex#L1)

The unified data structure for a given collection of data.

Consists of the recorded `samples` and the statistics computed from them.

# `t`

```elixir
@type t() :: %Benchee.CollectionData{
  samples: [float() | non_neg_integer()],
  statistics: Benchee.Statistics.t()
}
```

Samples and statistics.

Statistics might only come later when they are computed.

