DeltaSight.Statistics 1.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package DeltaSight.Statistics --version 1.0.0
                    
NuGet\Install-Package DeltaSight.Statistics -Version 1.0.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="DeltaSight.Statistics" Version="1.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="DeltaSight.Statistics" Version="1.0.0" />
                    
Directory.Packages.props
<PackageReference Include="DeltaSight.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 DeltaSight.Statistics --version 1.0.0
                    
#r "nuget: DeltaSight.Statistics, 1.0.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 DeltaSight.Statistics@1.0.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=DeltaSight.Statistics&version=1.0.0
                    
Install as a Cake Addin
#tool nuget:?package=DeltaSight.Statistics&version=1.0.0
                    
Install as a Cake Tool

DeltaSight.Statistics

Efficient tracking of the statistical descriptors (Mean, St. Deviation, Variance) of a numeric sample. Manipulation of the descriptors is done in one pass with help of Welford's algorithm for updating the variance (and standard deviation).

Useful if you need to update the running statistics of a very large sample in one pass, such as with streaming data.

Features

  • Fast one pass algorithm for:
    • Mean
    • Variance
    • PopulationVariance
    • StDeviation
    • PopulationStDeviation
    • Sum
    • Count
    • SumSquaredError
  • Immutable
  • JSON Serializable/Deserializable
  • Fluent style API

Compared to MathNet.Numerics.Statistics.RunningStatistics

RunningStatistics lacks:

  • Remove API
  • Support for adding a value more than once
  • Immutability
  • (Proper) Json serialization support

How to use

SampleStatistics

// Start adding/removing from an empty sample
var stats = SampleStatistics.Empty
  .Add(1, 2, 3)
  .Add(5d, 4L) // Adds 5d, 4 times
  .Remove(1d);
  
// Get some stats
var mean = stats.Mean;
var sse = stats.SumSquaredError;
var variance = stats.Variance;
  
// Start from an IEnumerable
var stats2 = new [] {1d, 2d, 3d}.CreateStatistics();
 
// Combine two samples
var combined = stats + stats2; // Combines both samples into one

// Multiply a sample (converts X to m*X)
var multiplied = combines * Math.PI;
 
// Equality
var equals = SampleStatistics.From(Math.PI) == SampleStatistics.From(Math.PI); // true

// To Json
var json = JsonSerializer.Serialize(multiplied); // Json serialization supported

// From Json
var fromJson = JsonSerializer.Deserialize<SampleStatistics>(json); // Json deserialization supported

// [MemberNotNullWhen] implementation
if (!stats2.IsEmpty())
{
   Console.WriteLine(stats2.Mean.Value); // Does not warn about `Mean` being possibly null
}

Benchmarks

|                        Method |       Mean |     Error |    StdDev |
|------------------------------ |-----------:|----------:|----------:|
|      SampleStatistics_Compute |  57.002 ns | 0.3728 ns | 0.3113 ns |
|               MathNet_Compute |  76.545 ns | 0.3206 ns | 0.2999 ns |
|              Baseline_Compute |  54.018 ns | 0.0681 ns | 0.0604 ns |
| SampleStatistics_AddFiveTimes |   7.800 ns | 0.0438 ns | 0.0410 ns |
|          MathNet_AddFiveTimes |  37.874 ns | 0.1875 ns | 0.1566 ns |
|         Baseline_AddFiveTimes | 292.260 ns | 1.2068 ns | 1.1288 ns |
|          SampleStatistics_Add |   7.828 ns | 0.0314 ns | 0.0293 ns |
|                   MathNet_Add |   6.741 ns | 0.0576 ns | 0.0450 ns |
|                  Baseline_Add | 102.016 ns | 0.2428 ns | 0.2152 ns |
BenchmarkDotNet=v0.13.1, OS=macOS Monterey 12.2.1 (21D62) [Darwin 21.3.0]
Apple M1, 1 CPU, 8 logical and 8 physical cores
.NET SDK=6.0.100
  [Host]     : .NET 6.0.0 (6.0.21.52210), Arm64 RyuJIT
  DefaultJob : .NET 6.0.0 (6.0.21.52210), Arm64 RyuJIT
Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  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 was computed.  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 was computed.  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.
  • net5.0

    • No dependencies.

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
3.0.0-beta20220412 335 4/19/2022
3.0.0-beta20220405 252 4/5/2022
3.0.0-beta20220315 229 3/15/2022
3.0.0-beta20220309 239 3/15/2022
3.0.0-beta20220308 248 3/10/2022
2.2.0 552 3/7/2022
2.1.0 529 3/7/2022
2.0.0 500 3/2/2022
1.0.0 524 2/24/2022