[package]
edition = "2021"
name = "inferust"
version = "0.1.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Statistical modeling for Rust — OLS regression, hypothesis tests, descriptive stats, and more. A statsmodels-style library."
homepage = "https://github.com/rogerneal/inferust"
documentation = "https://docs.rs/inferust"
readme = "README.md"
keywords = [
"statistics",
"regression",
"hypothesis-testing",
"data-science",
"ols",
]
categories = [
"science",
"mathematics",
]
license = "MIT"
repository = "https://github.com/rogerneal/inferust"
[lib]
name = "inferust"
path = "src/lib.rs"
[[example]]
name = "basic_ols"
path = "examples/basic_ols.rs"
[dependencies.nalgebra]
version = "0.33"
[dependencies.statrs]
version = "0.17"
[dependencies.thiserror]
version = "1"