Tobit regression with elastic net in python
Tobit regression is a form of censored regression that can handle a mix of left- and right-censored (and, of course, uncensored) observations of the target variable.
The R package censReg guided much of the implementation.
-
p_censor_leftThe censor point on the left side. -
p_censor_rightThe censor point on the right side. -
CThe regularization parameter, a larger C represents a heavier degree of penalty. -
alphaThe alpha governs the balance between the L1 and L2 regularization terms.