fiasto 0.2.7

High-performance modern Wilkinson's formula parsing for statistical models. Parses R-style formulas into structured JSON metadata supporting linear models, mixed effects, and complex statistical specifications.
Documentation
1
use fiasto::parse_formula; fn main() { let result = parse_formula("y ~ factor(treatment, ref=control) + c(group, ref=\"group1\")").unwrap(); println!("Both functions work together!"); }