basic_stats 1.0.0

Lightweight library with basic statistical estimators and hypothesis tests.
Documentation
[dependencies.statrs]
optional = true
version = "0.18"

[[example]]
name = "aok"
path = "examples/aok.rs"

[[example]]
name = "binomial"
path = "examples/binomial.rs"

[[example]]
name = "iter_with_counts"
path = "examples/iter_with_counts.rs"

[[example]]
name = "moments"
path = "examples/moments.rs"

[[example]]
name = "welch"
path = "examples/welch.rs"

[[example]]
name = "wilcoxon_ranksum"
path = "examples/wilcoxon_ranksum.rs"

[features]
aok = []
binomial = ["normal"]
default = ["binomial", "normal", "wilcoxon"]
normal = ["dep:statrs"]
wilcoxon = ["normal"]

[lib]
name = "basic_stats"
path = "src/lib.rs"

[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["mathematics"]
description = "Lightweight library with basic statistical estimators and hypothesis tests."
documentation = "https://docs.rs/basic_stats/latest/basic_stats/"
edition = "2024"
exclude = ["CHANGELOG.md", "*.sh", ".gitignore"]
keywords = ["statistics", "estimators", "hypothesis", "tests", "non-parametric"]
license = "MIT"
name = "basic_stats"
readme = "README.md"
repository = "https://github.com/pvillela/rust-basic-stats/tree/main"
version = "1.0.0"

[package.metadata.docs.rs]
all-features = true

[[test]]
name = "binomial_aok_errors"
path = "tests/binomial_aok_errors.rs"

[[test]]
name = "binomial_errors"
path = "tests/binomial_errors.rs"

[[test]]
name = "moments_errors"
path = "tests/moments_errors.rs"

[[test]]
name = "normal_aok"
path = "tests/normal_aok.rs"

[[test]]
name = "normal_aok_errors"
path = "tests/normal_aok_errors.rs"

[[test]]
name = "wilcoxon_errors"
path = "tests/wilcoxon_errors.rs"