-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
63c6da9
commit cecab1d
Showing
1 changed file
with
95 additions
and
95 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,96 +1,96 @@ | ||
# statrs | ||
|
||
![tests](https://github.com/statrs-dev/statrs/actions/workflows/test.yml/badge.svg) | ||
[![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](./LICENSE.md)] | ||
[![Crate](https://img.shields.io/crates/v/statrs.svg)](https://crates.io/crates/statrs) | ||
![docs.rs](https://img.shields.io/docsrs/statrs?style=for-the-badge). | ||
[![codecov](https://codecov.io/gh/statrs-dev/statrs/graph/badge.svg?token=XtMSMYXvIf)](https://codecov.io/gh/statrs-dev/statrs) | ||
|
||
## Current Version: v0.16.0 | ||
|
||
Should work for both nightly and stable Rust. | ||
|
||
**NOTE:** While I will try to maintain backwards compatibility as much as possible, since this is still a 0.x.x project the API is not considered stable and thus subject to possible breaking changes up until v1.0.0 | ||
|
||
## Description | ||
|
||
Statrs provides a host of statistical utilities for Rust scientific computing. | ||
Included are a number of common distributions that can be sampled (i.e. Normal, Exponential, Student's T, Gamma, Uniform, etc.) plus common statistical functions like the gamma function, beta function, and error function. | ||
|
||
This library is a work-in-progress port of the statistical capabilities in the C# Math.NET library. | ||
All unit tests in the library borrowed from Math.NET when possible and filled-in when not. | ||
|
||
This library is a work-in-progress and not complete. | ||
Planned for future releases are continued implementations of distributions as well as porting over more statistical utilities. | ||
|
||
Please check out the documentation [here](https://docs.rs/statrs/*/statrs/). | ||
|
||
## Usage | ||
|
||
Add the most recent release to your `Cargo.toml` | ||
|
||
```Rust | ||
[dependencies] | ||
statrs = "0.16" | ||
``` | ||
|
||
# statrs | ||
|
||
![tests](https://github.com/statrs-dev/statrs/actions/workflows/test.yml/badge.svg) | ||
[![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](./LICENSE.md)] | ||
[![Crate](https://img.shields.io/crates/v/statrs.svg)](https://crates.io/crates/statrs) | ||
![docs.rs](https://img.shields.io/docsrs/statrs?style=for-the-badge). | ||
[![codecov](https://codecov.io/gh/statrs-dev/statrs/graph/badge.svg?token=XtMSMYXvIf)](https://codecov.io/gh/statrs-dev/statrs) | ||
|
||
## Current Version: v0.16.0 | ||
|
||
Should work for both nightly and stable Rust. | ||
|
||
**NOTE:** While I will try to maintain backwards compatibility as much as possible, since this is still a 0.x.x project the API is not considered stable and thus subject to possible breaking changes up until v1.0.0 | ||
|
||
## Description | ||
|
||
Statrs provides a host of statistical utilities for Rust scientific computing. | ||
Included are a number of common distributions that can be sampled (i.e. Normal, Exponential, Student's T, Gamma, Uniform, etc.) plus common statistical functions like the gamma function, beta function, and error function. | ||
|
||
This library is a work-in-progress port of the statistical capabilities in the C# Math.NET library. | ||
All unit tests in the library borrowed from Math.NET when possible and filled-in when not. | ||
|
||
This library is a work-in-progress and not complete. | ||
Planned for future releases are continued implementations of distributions as well as porting over more statistical utilities. | ||
|
||
Please check out the documentation [here](https://docs.rs/statrs/*/statrs/). | ||
|
||
## Usage | ||
|
||
Add the most recent release to your `Cargo.toml` | ||
|
||
```Rust | ||
[dependencies] | ||
statrs = "0.16" | ||
``` | ||
|
||
For examples, view the docs hosted on ![docs.rs](https://img.shields.io/docsrs/statrs?style=for-the-badge). | ||
|
||
## Contributing | ||
|
||
Want to contribute? | ||
Check out some of the issues marked [help wanted](https://github.com/statrs-dev/statrs/issues?q=is%3Aissue+is%3Aopen+label%3A%22help+wanted%22) | ||
|
||
### How to contribute | ||
|
||
Clone the repo: | ||
|
||
``` | ||
git clone https://github.com/statrs-dev/statrs | ||
``` | ||
|
||
Create a feature branch: | ||
|
||
``` | ||
git checkout -b <feature_branch> master | ||
``` | ||
|
||
Write your code and docs, then ensure it is formatted: | ||
|
||
The below sample modify in-place, use `--check` flag to view diff without making file changes. | ||
Not using `fmt` from +nightly may result in some warnings and different formatting. | ||
Our CI will `fmt`, but less chores in commit history are appreciated. | ||
|
||
``` | ||
cargo +nightly fmt | ||
``` | ||
|
||
After commiting your code: | ||
|
||
``` | ||
git push -u origin <feature_branch> | ||
``` | ||
|
||
Then submit a PR, preferably referencing the relevant issue, if it exists. | ||
|
||
### Commit messages | ||
|
||
Please be explicit and and purposeful with commit messages. | ||
[Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/#summary) encouraged. | ||
|
||
#### Bad | ||
|
||
``` | ||
Modify test code | ||
``` | ||
|
||
#### Good | ||
|
||
``` | ||
test: Update statrs::distribution::Normal test_cdf | ||
``` | ||
|
||
### Communication Expectations | ||
|
||
Please allow at least one week before pinging issues/pr's. | ||
|
||
|
||
## Contributing | ||
|
||
Want to contribute? | ||
Check out some of the issues marked [help wanted](https://github.com/statrs-dev/statrs/issues?q=is%3Aissue+is%3Aopen+label%3A%22help+wanted%22) | ||
|
||
### How to contribute | ||
|
||
Clone the repo: | ||
|
||
``` | ||
git clone https://github.com/statrs-dev/statrs | ||
``` | ||
|
||
Create a feature branch: | ||
|
||
``` | ||
git checkout -b <feature_branch> master | ||
``` | ||
|
||
Write your code and docs, then ensure it is formatted: | ||
|
||
The below sample modify in-place, use `--check` flag to view diff without making file changes. | ||
Not using `fmt` from +nightly may result in some warnings and different formatting. | ||
Our CI will `fmt`, but less chores in commit history are appreciated. | ||
|
||
``` | ||
cargo +nightly fmt | ||
``` | ||
|
||
After commiting your code: | ||
|
||
``` | ||
git push -u origin <feature_branch> | ||
``` | ||
|
||
Then submit a PR, preferably referencing the relevant issue, if it exists. | ||
|
||
### Commit messages | ||
|
||
Please be explicit and and purposeful with commit messages. | ||
[Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/#summary) encouraged. | ||
|
||
#### Bad | ||
|
||
``` | ||
Modify test code | ||
``` | ||
|
||
#### Good | ||
|
||
``` | ||
test: Update statrs::distribution::Normal test_cdf | ||
``` | ||
|
||
### Communication Expectations | ||
|
||
Please allow at least one week before pinging issues/pr's. | ||
|