semicontinuous_models 0.1.0

Reusable models for semi-continuous outcomes (two-part, Tweedie, and log-normal)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! # Models
//!
//! Model implementations for semi-continuous, right-skewed semi-continuous outcome data.
//! Includes two-part models, Tweedie GLM, log-normal with smearing, and
//! a selection workflow to compare candidate fits.

pub mod comparison;
pub mod lognormal;
pub mod matrix_ops;
pub mod selection;
pub mod tweedie;
pub mod two_part;