Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/aligusnet/fsstats
- Owner: aligusnet
- License: bsd-3-clause
- Created: 2018-05-09T00:00:59.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-07-21T12:46:40.000Z (over 6 years ago)
- Last Synced: 2024-05-29T12:26:22.250Z (7 months ago)
- Topics: fsharp, functional-programming, mathematics, statistics, statistics-library
- Language: F#
- Homepage:
- Size: 166 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.