ndarray-glm 0.0.13

Performs regression for generalized linear models using IRLS on data stored in arrays.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "ndarray-glm"
version = "0.0.13"
authors = ["Felix Clark <mfclark3690@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Performs regression for generalized linear models using IRLS on data stored in arrays."
readme = "README.md"
keywords = [
    "ndarray",
    "statistics",
    "regression",
    "glm",
    "irls",
]
categories = [
    "mathematics",
    "science",
]
license = "MIT"
repository = "https://github.com/felix-clark/ndarray-glm"

[badges.maintenance]
status = "experimental"

[badges.travis-ci]
repository = "felix-clark/ndarray-glm"

[features]
intel-mkl-static = ["ndarray-linalg/intel-mkl-static"]
intel-mkl-system = ["ndarray-linalg/intel-mkl-system"]
netlib-static = ["ndarray-linalg/netlib-static"]
netlib-system = ["ndarray-linalg/netlib-system"]
openblas-static = ["ndarray-linalg/openblas-static"]
openblas-system = ["ndarray-linalg/openblas-system"]

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

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

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

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

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

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

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

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

[dependencies.itertools]
version = "0.14"

[dependencies.ndarray]
version = "0.17"
features = ["blas"]

[dependencies.ndarray-linalg]
version = "0.18"

[dependencies.num-traits]
version = "0.2"

[dependencies.thiserror]
version = "2.0"

[dev-dependencies.anyhow]
version = "1.0"

[dev-dependencies.approx]
version = "0.5"

[dev-dependencies.ndarray]
version = "0.17"
features = [
    "blas",
    "approx",
]

[dev-dependencies.ndarray-linalg]
version = "0.18"
features = ["openblas-system"]
default-features = false