T_INV

function T_INV(arg1: number = null, arg2: number = null): number

Description

Returns the left-tailed inverse of the Student's t-distribution.

Parameters

arg1numberdefault: null

The probability associated with the two-tailed Student's t-distribution, a number between 0 and 1 inclusive.

arg2numberdefault: null

A positive integer indicating the number of degrees of freedom to characterize the distribution.

Returns

number

Try It



var oWorksheet = Api.GetActiveSheet();
var oFunction = Api.GetWorksheetFunction();
var result = oFunction.T_INV(0.75, 2);
oWorksheet.GetRange("B2").SetValue(result);


Get Help

  • If you have any questions about ONLYOFFICE Docs, try the FAQ section first.
  • You can request a feature or report a bug by posting an issue on GitHub.
  • You can also ask our developers on ONLYOFFICE forum (registration required).