Uses of Interface
dev.nm.stat.regression.linear.glm.distribution.link.LinkFunction
-
Packages that use LinkFunction Package Description dev.nm.stat.regression.linear.glm.distribution dev.nm.stat.regression.linear.glm.distribution.link dev.nm.stat.regression.linear.glm.quasi.family -
-
Uses of LinkFunction in dev.nm.stat.regression.linear.glm.distribution
Methods in dev.nm.stat.regression.linear.glm.distribution that return LinkFunction Modifier and Type Method Description LinkFunction
GLMFamily. link()
Get the link function of this distribution.Constructors in dev.nm.stat.regression.linear.glm.distribution with parameters of type LinkFunction Constructor Description GLMFamily(GLMExponentialDistribution dist, LinkFunction link)
Construct an instance ofFamily
. -
Uses of LinkFunction in dev.nm.stat.regression.linear.glm.distribution.link
Classes in dev.nm.stat.regression.linear.glm.distribution.link that implement LinkFunction Modifier and Type Class Description class
LinkCloglog
This class represents the complementary log-log link function: g(x) = log(-log(1 - x))class
LinkIdentity
This class represents the identity link function: g(x) = xclass
LinkInverse
This class represents the inverse link function: g(x) = 1/xclass
LinkInverseSquared
This class represents the inverse-squared link function: g(x) = 1/x2class
LinkLog
This class represents the log link function: g(x) = log(x)class
LinkLogit
This class represents the logit link function: \[ g(x) = \log(\frac{\mu}{1-\mu}) \]class
LinkProbit
This class represents the Probit link function, which is the inverse of cumulative distribution function of the standard Normal distribution N(0, 1).class
LinkSqrt
This class represents the square-root link function: g(x) = sqrt(x) -
Uses of LinkFunction in dev.nm.stat.regression.linear.glm.quasi.family
Constructors in dev.nm.stat.regression.linear.glm.quasi.family with parameters of type LinkFunction Constructor Description QuasiFamily(QuasiDistribution dist, LinkFunction link)
-