approx_pearson_skew 0.1.0

Pearson second skew coefficient, using micromath square root approximation
Documentation
  • Coverage
  • 87.5%
    7 out of 8 items documented6 out of 6 items with examples
  • Size
  • Source code size: 16.79 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 938.41 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 12s Average build duration of successful builds.
  • all releases: 12s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • hazelutf8/approx_pearson_skew
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • hazelutf8

Approximate Shannon Entropy

A rust library to calculate the approximate Pearson Median Skew of a slice.

The median algorithm used is a O(1) size but O(nk) time complexity with worst case O(n^2), due to the immutable slice input restriction.

Usable on no_std due to use of approximate square root from micromath.

Usage

Add this to your Cargo.toml

[dependencies]
approx_pearson_skew = "0.1.0"

Examples

$ cargo build --example stdin_skew
$ echo 1234 | ./target/debug/examples/stdin_skew