Class BinomialRegression<E1 extends Enum<E1> & IntegerValuedEnum>

java.lang.Object
microsim.statistics.regression.BinomialRegression<E1>
Type Parameters:
E1 - event type.
All Implemented Interfaces:
IDiscreteChoiceModel

public class BinomialRegression<E1 extends Enum<E1> & IntegerValuedEnum> extends Object implements IDiscreteChoiceModel
Binomial Models.

Let y define a variable that can take one of two values {0,1}

ystar = Xb - e

y = 1 if ystar>=0 and 0 otherwise

P(y=1|X) = P(ystar>=0) = P(e<=Xb) = F(Xb)

Author:
Justin van de Ven