Skip to main content

Crate so_core

Crate so_core 

Source
Expand description

Core data structures and formula parsing for StatOxide

This crate provides the foundational types for statistical computing:

  • Data structures: Series, DataFrame for columnar data
  • Formula parsing: R-style formula syntax for model specification
  • Error types: Unified error handling across the ecosystem

Re-exports§

pub use data::DataFrame;
pub use data::Series;
pub use error::Error;
pub use error::Result;
pub use formula::Formula;

Modules§

data
Data structures for statistical computing
error
Error types for so-core
formula
R-style formula parser and design matrix builder