SuanShu, a Java numerical and statistical library

Package com.numericalmethod.suanshu.stats.regression.linear.glm.distribution.link

Interface Summary
LinkFunction This interface represents a link function g(x) in the Generalized Linear Model (GLM).
 

Class Summary
Cloglog This class represents the complementary log-log link function: g(x) = log(-log(1 - x))
Identity This class represents the link function: g(x) = x
Inverse This class represents the link function: g(x) = 1/x
InverseSquared This class represents the link function: g(x) = 1/x2
Log This class represents the link function: g(x) = log(x)
Logit This class represents the link function: mu g(x) = log(--------) 1 - mu
Probit This class represents the link function: Inverse of cumulative distribution function of a NormalDistribution distribution N(0, 1).
Sqrt This class represents the link function: g(x) = sqrt(x)
 


SuanShu, a Java numerical and statistical library

Copyright © 2011 Numerical Method Inc. Ltd. All Rights Reserved.