Interface LinkFunction
-
- All Known Implementing Classes:
LinkCloglog
,LinkIdentity
,LinkInverse
,LinkInverseSquared
,LinkLog
,LinkLogit
,LinkProbit
,LinkSqrt
public interface LinkFunction
This interface represents a link function g(x) in Generalized Linear Model (GLM). The R equivalent function ismake.link
.- See Also:
GeneralizedLinearModel
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description double
derivative(double x)
Derivative of the link function, i.e., g'(x).double
inverse(double x)
Inverse of the link function, i.e., g-1(x).
-