Skip to content

Latest commit

 

History

History
63 lines (43 loc) · 1.8 KB

File metadata and controls

63 lines (43 loc) · 1.8 KB

Banner

Cross-table analytics

Version Downloads Dependent Libraries Language Compatibility License

Install

Stat targets .NET Standard 2.0, fits both .NET and .NET Framework.

Install Stat package and sub packages.

NuGet Package Manager:

Install-Package Stat

.NET CLI:

dotnet add package Stat

All versions can be found on nuget.

Usage

Create a Crostab

using Stat.Percentile
using Spare
using static Palett.Presets;

var table = Crostab<int>.Build(
    new[] {"high", "mid", "low"}, // side
    new[] {"tier 1", "tier 2", "tier 3"}, // head
    new [,] {
        { 960, 660, 240 },
        { 840, 570, 180 },
        { 720, 480, 120 },
    });
table.Deco().Logger();

Examples


Stat has a test suite in the test project.

Feedback

Stat is licensed under the MIT license.

Bug report and contribution are welcome at the GitHub repository.