用于计算在四参数β分布下达到指定分位数的观测值比例的函数。
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)