Class TDistRt

  • All Implemented Interfaces:
    FreeRefFunction, Function, Function2Arg

    public final class TDistRt
    extends Fixed2ArgFunction
    implements FreeRefFunction
    Implementation for Excel T.DIST.RT() function.

    Syntax:
    T.DIST.RT (X,Deg_freedom)

    Returns the right-tailed Student's t-distribution. The t-distribution is used in the hypothesis testing of small sample data sets. Use this function in place of a table of critical values for the t-distribution.

    • X Required. The numeric value at which to evaluate the distribution.
    • Deg_freedom Required. An integer indicating the number of degrees of freedom.
    • If any argument is non-numeric, T.DIST.RT returns the #VALUE! error value.
    • If Deg_freedom < 1, T.DIST.RT returns the #NUM! error value.
    • The Deg_freedom argument is truncated to an integer.
    https://support.microsoft.com/en-us/office/t-dist-rt-function-20a30020-86f9-4b35-af1f-7ef6ae683eda
    • Field Detail

      • instance

        public static final TDistRt instance
    • Constructor Detail

      • TDistRt

        public TDistRt()