给定拟合标准(双参数)β分布,返回α形状参数值,其中观察到的平均值成为模式。
MLA(alpha, beta, x = NULL, n = NULL)
alpha : 拟合标准βPDD的α参数观测值。
beta : 拟合标准beta-PDD的观测beta参数值。
x : 观察到正确的结果。
n : 测试长度。
# Assuming a prior Standard (two-parameter) Beta distribution is fit, which
# yield an alpha parameter of 10 and a beta parameter of 8, calculate the
# true-alpha parameter most likely to have produced the observations:
MLA(a = 10, b = 8)