Skip to content

Commit db11631

Browse files
Update README + Changelog (#54)
1 parent 496b8ac commit db11631

File tree

1 file changed

+20
-2
lines changed

1 file changed

+20
-2
lines changed

README.md

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ Currently available routines include:
1414
- partitioning;
1515
- correlation analysis (covariance, pearson correlation);
1616
- measures from information theory (entropy, KL divergence, etc.);
17+
- deviation functions (distances, counts, errors, etc.);
1718
- histogram computation.
1819

1920
See the [documentation](https://docs.rs/ndarray-stats) for more information.
@@ -26,12 +27,29 @@ Please feel free to contribute new functionality! A roadmap can be found [here](
2627

2728
```toml
2829
[dependencies]
29-
ndarray = "0.12.1"
30-
ndarray-stats = "0.2"
30+
ndarray = "0.13"
31+
ndarray-stats = "0.3"
3132
```
3233

3334
## Releases
3435

36+
* **0.3.0**
37+
38+
* New functionality:
39+
* Deviation functions:
40+
* Counts equal/unequal
41+
* `l1`, `l2`, `linf` distances
42+
* (Root) mean squared error
43+
* Peak signal-to-noise ratio
44+
* Summary statistics:
45+
* Weighted sum
46+
* Weighted mean
47+
* Improvements / breaking changes:
48+
* Updated to `ndarray:v0.13.0`
49+
* Minimum supported Rust version: `1.37`
50+
51+
*Contributors*: [@munckymagik](https://github.com/munckymagik), [@nilgoyette](https://github.com/nilgoyette), [@jturner314](https://github.com/jturner314), [@LukeMathWalker](https://github.com/LukeMathWalker)
52+
3553
* **0.2.0**
3654

3755
* New functionality:

0 commit comments

Comments
 (0)