inferust 0.1.22

Statistical modeling for Rust - OLS/WLS regression, GLM, survival analysis, ARIMA/VAR, nonparametric tests, and more. A statsmodels-style library.
Documentation
1
2
3
4
FROM python:3.12-slim
RUN pip install --no-cache-dir numpy statsmodels lifelines pandas scipy
COPY scripts/bench_all_statsmodels.py /bench.py
ENTRYPOINT ["python3", "/bench.py"]