Keyboard shortcuts

Press or to navigate between chapters

Press ? to show this help

Press Esc to hide this help

API Reference (docs.rs)

The complete API reference for datarust is hosted on docs.rs — the standard home for Rust crate documentation.

→ Open the full API reference on docs.rs

What’s there

docs.rs builds the rustdoc documentation with all features enabled (serde, rayon, matrixmultiply, datasets), so you see the complete API surface including:

  • Every pub struct, pub enum, pub trait, and pub fn with doc comments.
  • Type signatures, trait implementations, and method docs.
  • Inline code examples from doc comments (runnable via cargo test --doc).
  • Cross-links between types and modules.
Traitdocs.rs link
Transformerdatarust::Transformer
Regressordatarust::Regressor
Predictordatarust::Predictor
Classifierdatarust::Classifier
PredictProbadatarust::PredictProba
Clustererdatarust::Clusterer
Paramsdatarust::Params
CategoricalTransformerdatarust::CategoricalTransformer
FeatureNamesdatarust::FeatureNames

Building locally

You can generate the same docs offline:

cargo doc --all-features --no-deps --open

The --open flag opens the generated HTML in your browser.