gamlss-transform 0.2.1

Target transforms for GAMLSS modeling
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Built-in target transforms.

pub mod asinh_scale;
pub mod identity_positive;
pub mod log;
pub mod log1p_shift;
pub mod standardize;

pub use asinh_scale::{AsinhScale, AsinhScaleState};
pub use identity_positive::{IdentityPositive, IdentityPositiveState};
pub use log::{Log, LogState};
pub use log1p_shift::{Log1pShift, Log1pShiftState};
pub use standardize::{Standardize, StandardizeState};