T_DIST_RT
function T_DIST_RT(arg1: number = null, arg2: number = null): number
Description
Returns the right-tailed Student's t-distribution.
Parameters
- arg1
number
null The numeric value at which to evaluate the distribution.
- arg2
number
null An integer indicating the number of degrees of freedom that characterize the distribution.
Returns
number
Try It
var oWorksheet = Api.GetActiveSheet();
var oFunction = Api.GetWorksheetFunction();
oWorksheet.GetRange("A1").SetValue(oFunction.T_DIST_RT(1.5, 10));