用于计算四参数β分布下给定比例(即y值)的分位数(即x值)的函数。
qBeta.4P(p, l, u, alpha, beta, lower.tail = TRUE)
p : 一种比例或概率的向量(或单个值),用于计算x的相应值(即分位数)。
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
# quantile at a specific point of the distribution (e.g., .5)
# using qBeta.4P():
qBeta.4P(p = .5, l = .25, u = .75, alpha = 5, beta = 3)