Skip to content

aligusnet/FsStats

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
src
 
 
 
 
 
 
 
 
 
 

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.