Skip to content

Latest commit

 

History

History
34 lines (21 loc) · 1007 Bytes

README.md

File metadata and controls

34 lines (21 loc) · 1007 Bytes

FsStats

Build status

Basic statistics with some probability library.

Includes common distributions (Bernoulli, Binomial, Poisson, Student's and Normal), random number generators from some of the distributions, summary statistics for a sample, Z-Test, Student's T-Test, special functions (Error, Gamma, Beta and Regularized Incomplete Beta).

Getting started with .NET Core

Install to use in your project

dotnet add package FsStats

Developing

Build and run unit tests

dotnet test src/FsStats.Test/FsStats.Test.fsproj

Build and publishing the package

dotnet pack  # prints path to nupkg required by the next command
dotnet nuget push <path/to/nupkg> -k <API-KEY> -s https://api.nuget.org/v3/index.json

Licensing

The code in this project is licensed under BSD 3-Clause license.