Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/harlanhaskins/Probably
A Swift probability and statistics library
https://github.com/harlanhaskins/Probably
Last synced: 3 months ago
JSON representation
A Swift probability and statistics library
- Host: GitHub
- URL: https://github.com/harlanhaskins/Probably
- Owner: harlanhaskins
- License: mit
- Created: 2016-10-07T18:09:51.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2016-10-21T18:14:49.000Z (about 8 years ago)
- Last Synced: 2024-04-21T18:24:55.123Z (7 months ago)
- Language: Swift
- Size: 32.2 KB
- Stars: 269
- Watchers: 6
- Forks: 11
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-ios - Probably - A Swift probability and statistics library. (Data Structures / Algorithms / Getting Started)
- awesome-ios-star - Probably - A Swift probability and statistics library. (Data Structures / Algorithms / Getting Started)
- fucking-awesome-ios - Probably - A Swift probability and statistics library. (Data Structures / Algorithms / Getting Started)
- fucking-awesome-ios - Probably - A Swift probability and statistics library. (Data Structures / Algorithms / Getting Started)
README
# Probably [![Build Status](https://travis-ci.org/harlanhaskins/Probably.svg?branch=master)](https://travis-ci.org/harlanhaskins/Probably) [![codecov.io](https://codecov.io/gh/harlanhaskins/Probably/coverage.svg?branch=master)](https://codecov.io/gh/harlanhaskins/Probably?branch=master)
Probably is a set of Swift structures for computing the probability and
cumulative distributions of different probablistic functions.Right now, it supports:
- Standard distributions with explicit event probabilities
- Continuous distributions
- Binomial distributions
- Hypergeometric distributions
- Poisson distributions
- Gaussian distributions
- Negative Binomial distributions
# InstallationProbably is available through the Swift Package Manager.
Just add this git repository as a dependency:
```
.Package(url: "https://github.com/harlanhaskins/Probably.git", majorVersion: 0, minorVersion: 1)
```And it should download the project and link it in.
# Author
Harlan Haskins [@harlanhaskins](https://github.com/harlanhaskins)# License
Probably is released under the MIT license, a copy of which is
included in this repo.