Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/aligusnet/fsstats

Basic Statistics and Some Probability Library
https://github.com/aligusnet/fsstats

fsharp functional-programming mathematics statistics statistics-library

Last synced: about 1 month ago
JSON representation

Basic Statistics and Some Probability Library

Awesome Lists containing this project

README

        

# FsStats

[![Build status](https://ci.appveyor.com/api/projects/status/wx57w432dl0vnta4/branch/master?svg=true)](https://ci.appveyor.com/project/aligusnet/fsstats/branch/master)

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

```(bash)
dotnet add package FsStats
```

## Developing

### Build and run unit tests

```(bash)
dotnet test src/FsStats.Test/FsStats.Test.fsproj
```

### Build and publishing the package

```(bash)
dotnet pack # prints path to nupkg required by the next command
dotnet nuget push -k -s https://api.nuget.org/v3/index.json
```

## Licensing

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