Celerity.Statistics 2.7.0

There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package Celerity.Statistics --version 2.7.0
                    
NuGet\Install-Package Celerity.Statistics -Version 2.7.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Celerity.Statistics" Version="2.7.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Celerity.Statistics" Version="2.7.0" />
                    
Directory.Packages.props
<PackageReference Include="Celerity.Statistics" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Celerity.Statistics --version 2.7.0
                    
#r "nuget: Celerity.Statistics, 2.7.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Celerity.Statistics@2.7.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Celerity.Statistics&version=2.7.0
                    
Install as a Cake Addin
#tool nuget:?package=Celerity.Statistics&version=2.7.0
                    
Install as a Cake Tool

Celerity.Statistics

Streaming summary statistics in bounded memory. Part of the Celerity family of high-performance .NET libraries.

The BCL summarizes a sequence with Average, Sum, Min and Max, and stops there. There is no quantile type, no sampler, no variance, no higher moment and no accumulator that can be fed one value at a time — so summarizing a stream means keeping the stream, which is the one thing a stream will not let you do.

What's in the box

  • DDSketch — quantiles with a relative error guarantee: the reported value is within α of the true one at every quantile, in memory proportional to the log of the value range rather than to the sample count. 1% of 10 ms and 1% of 10 s, which is what latency work wants. Handles negatives and zero, merges bucket-exactly across shards unless an operand has already collapsed, and says out loud (HasCollapsed) when a bin budget has run out and the guarantee has stopped holding for the quantiles that resolve to a collapsed bucket.
  • ReservoirSampler<T> — a fixed-size uniform sample of a stream of unknown length, via Li's Algorithm L: O(k) memory and O(k · log(n / k)) random draws over the whole stream, not one per item. Seeded, so the sample is reproducible on a given runtime and platform — but not promised byte-identical across them, because the skip arithmetic runs through Math.Log / Math.Exp, whose last bit .NET does not fix across runtimes.
  • RunningStatistics — count, mean, variance, standard deviation, skewness, kurtosis, min and max in a single pass, using Welford's recurrence extended to the fourth moment. A mutable struct, so default is a valid empty accumulator and an array of per-bucket statistics costs no allocations. Mergeable by Chan's parallel formulas.

Where it wins, and where it does not

  • DDSketch is not exact. It trades a bounded relative error for bounded memory. If every sample fits comfortably in a List<double> and you query once, sort it — the sketch wins on memory and on repeated queries, not on a single exact answer.
  • DDSketch's guarantee is relative, not absolute. Near zero, a relative error is a very small absolute one, and far from zero it is a large one. That is the right shape for latencies and sizes, and the wrong shape for a value that can be any magnitude with equal significance.
  • ReservoirSampler has no Merge. A uniform merge of two reservoirs needs a hypergeometric draw over the two stream lengths; replaying one side's retained items into the other over-weights the shorter stream. Rather than ship a subtly biased merge, it ships without one.
  • RunningStatistics wins on accuracy, not on speed. It is measurably slower than the two-pass LINQ shape — CI puts it at 1.9× — because it maintains all four moments on every Add. What it buys is a single pass over a stream it never retains, and an answer the sum / sumOfSquares shortcut gets wrong: that one is cheaper still and can return a negative variance.
  • ReservoirSampler loses on short streams, where Algorithm L's transcendentals dominate: 6.2× slower than materializing at a thousand items, 1.7× faster at a hundred thousand. The crossover is around ten thousand.

Quick start

using Celerity.Statistics;

// Quantiles over an unbounded stream, 1% relative accuracy.
var latencies = new DDSketch(relativeAccuracy: 0.01);
foreach (double ms in requestLatencies)
{
    latencies.Add(ms);
}

Console.WriteLine($"p50 {latencies.GetQuantile(0.5):F2} ms");
Console.WriteLine($"p99 {latencies.GetQuantile(0.99):F2} ms");

// Merge per-shard sketches into a global one.
foreach (DDSketch shard in shards)
{
    latencies.Merge(shard);
}

// A 1,000-item uniform sample of a stream of unknown length.
var sample = new ReservoirSampler<string>(capacity: 1_000, seed: 42);
foreach (string line in logLines)
{
    sample.Add(line);
}

// Single-pass moments, no allocation.
var stats = new RunningStatistics();
stats.Add(payloadSizes);
Console.WriteLine($"{stats.Mean:F1} ± {stats.StandardDeviation:F1} bytes");

Documentation

License

MIT

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
2.7.1-beta.6 0 8/24/2026
2.7.1-beta.5 41 8/20/2026
2.7.1-beta.2 40 8/19/2026
2.7.0 811 8/18/2026