Skip to content

aligusnet/FsStats

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.