在标准β概率密度分布下,根据定义的均值和方差或标准偏差,计算特定观测值落在指定区间($0,x¥或$x,1¥)下的概率。
pBetaMS(q, mean, variance = NULL, sd = NULL, lower.tail = TRUE)
q : 标准β概率密度分布x轴上的一个特定点,具有定义的均值和方差。
mean : 目标标准β概率密度分布的平均值。
variance : 目标标准β概率密度分布的方差。
sd : 目标标准β概率密度分布的标准差。
lower.tail : 应考虑的密度是在分布的低端(即$0->x¥)还是高端(即$x->1¥)之间。
# To compute the proportion of the density under the lower-end tail of a
# point along the Standard (two-parameter) PDD (e.g., .5) with mean of .6
# and variance of .04:
pBetaMS(q = .5, mean = .6, variance = .04)