Skip to main content

T_DIST_2T

Returns the two-tailed Student's t-distribution.

Syntax

expression.T_DIST_2T(arg1, arg2);

expression - A variable that represents a ApiWorksheetFunction class.

Parameters

NameRequired/OptionalData typeDefaultDescription
arg1RequiredApiRange | ApiName | numberThe numeric value at which to evaluate the distribution.
arg2RequiredApiRange | ApiName | numberAn integer indicating the number of degrees of freedom that characterize the distribution.

Returns

number

Example

This example shows how to return the two-tailed Student's t-distribution.

// How to calculate the two-tailed Student's t-distribution.

// Use a function to estimate the Student's t-distribution right-tailed.

let worksheet = Api.GetActiveSheet();
let func = Api.GetWorksheetFunction();
worksheet.GetRange("A1").SetValue(func.T_DIST_2T(1.5, 10));