R语言betafunctions包 pBeta.4P函数使用说明

返回R语言betafunctions包函数列表


功能\作用概述:

用于计算在四参数β分布下达到指定分位数的观测值比例的函数。


语法\用法:

pBeta.4P(q, l, u, alpha, beta, lower.tail = TRUE)


参数说明:

q : 要计算比例的分位数或分位数向量。

l : 第一个(下一个)位置参数。

u : 第二个(上)位置参数。

alpha : 第一个形状参数。

beta : 第二个形状参数。

lower.tail : 计算的比例是在下尾翼还是在上尾翼。默认值为TRUE(下尾)。


示例\实例:

# Assume some variable follows a four-parameter beta distribution with
# location parameters l = 0.25 and u = .75, and shape
# parameters alpha = 5 and beta = 3. To compute the
# cumulative probability at a specific point of the distribution (e.g., .5)
# using pBeta.4P():
pBeta.4P(q = .5, l = .25, u = .75, alpha = 5, beta = 3)