Class LinkProbit

  • All Implemented Interfaces:
    LinkFunction

    public class LinkProbit
    extends Object
    implements LinkFunction
    This class represents the Probit link function, which is the inverse of cumulative distribution function of the standard Normal distribution N(0, 1).
    See Also:
    GeneralizedLinearModel
    • Constructor Detail

      • LinkProbit

        public LinkProbit()
    • Method Detail

      • inverse

        public double inverse​(double x)
        Description copied from interface: LinkFunction
        Inverse of the link function, i.e., g-1(x).
        Specified by:
        inverse in interface LinkFunction
        Parameters:
        x - x
        Returns:
        g-1(x)
      • derivative

        public double derivative​(double x)
        Description copied from interface: LinkFunction
        Derivative of the link function, i.e., g'(x).
        Specified by:
        derivative in interface LinkFunction
        Parameters:
        x - x
        Returns:
        g'(x)