LogisticReg {drcarlate} | R Documentation |
Logestic CDF(cumulative distribution function).
LogisticReg(x)
x |
A nx1 matrix. |
y A nx1 matrix. y equals to exp(x)/(1+exp(x)) if y is not NA and 0 else.
x <- pracma::rand(5,1)
y <- LogisticReg(x = x)