T_DIST_2T
function T_DIST_2T(arg1: number = null, arg2: number = null): number
Description
Returns the two-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_2T(1.5, 10));