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.
usefiasto::parse_formula;fnmain()->Result<(), Box<dyn std::error::Error>>{let input ="y ~ x +++";let result =parse_formula(input)?;println!("{}",serde_json::to_string_pretty(&result)?);Ok(())}