令和为 iid 非中心 t 随机变量。
我对这个问题感兴趣:的分布是什么?
即两个独立同分布非中心学生 t 变量的差异分布是什么?
假设是或的观测估计值,在代码中,的似然函数将是:R
likelihood = function(x) dt(d*sqrt(N), df, ncp = x*sqrt(N))
其中d = an observed estimate of X1 or X2, x = parameter range (-Inf to Inf),N = sample size和df = N - 1.
PS dt(x,df,ncp)是非中心 t 分布的 pdf,第三个参数ncp是非中心参数。
