WorksheetFunction.Beta_Dist Method (Excel)

Returns the beta cumulative distribution function.

Version Information

추가된 버전: Excel 2010

Syntax

.Beta_Dist(Arg1, Arg2, Arg3, Arg4, Arg5)

A variable that represents a WorksheetFunction object.

Parameters

Name

Required/Optional

Data Type

Description

Arg1

필수

Double

The value between A and B at which to evaluate the function.

Arg2

필수

Double

The Alpha parameter of the distribution.

Arg3

필수

Double

The Beta parameter of the distribution.

Arg4

선택

Variant

Cumulative - a logical value that determines the form of the function. If cumulative is TRUE, BETA.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function.

Arg5

선택

Variant

An optional lower bound to the interval of x.

Arg6

선택

Variant

An optional upper bound to the interval of x.

Return Value

Double

Remarks

The beta distribution is commonly used to study variation in the percentage of something across samples, such as the fraction of the day people spend watching television:

  • If any argument is nonnumeric, Beta_Dist returns the #VALUE! error value.

  • If alpha ≤ 0 or beta ≤ 0, Beta_Dist generates an error value.

  • If x < A, x > B, or A = B, Beta_Dist generates an error value.

  • If you omit values for A and B (lower and upper bound), Beta_Dist uses the standard cumulative beta distribution, so that A = 0 and B = 1.

참고 항목

개념

WorksheetFunction Object Members

WorksheetFunction Object