Click or drag to resize
Accord.NET (logo)

ILinkFunction Interface

Link function interface.

Namespace:  Accord.Statistics.Links
Assembly:  Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax
public interface ILinkFunction : ICloneable
Request Example View Source

The ILinkFunction type exposes the following members.

Methods
  NameDescription
Public methodClone
Creates a new object that is a copy of the current instance.
(Inherited from ICloneable.)
Public methodDerivative
First derivative of the Inverse(Double) function.
Public methodDerivative2
First derivative of the Inverse(Double) function expressed in terms of it's output.
Public methodFunction
The link function.
Public methodInverse
The inverse of the link function.
Public methodLog
The logarithm of the inverse of the link function.
Top
Remarks

The link function provides the relationship between the linear predictor and the mean of the distribution function. There are many commonly used link functions, and their choice can be somewhat arbitrary. It can be convenient to match the domain of the link function to the range of the distribution function's mean.

References:

See Also