mmleFHP {FABInference} | R Documentation |
Marginal MLEs for the Fay-Herriot model with known covariance
Description
Marginal MLEs for the Fay-Herriot random effects model where the covariance matrix for the sampling model is known
Usage
mmleFHP(y, X, Sigma)
Arguments
y |
direct data following normal model |
X |
linking model predictors |
Sigma |
covariance matrix in sampling model |
Value
a list of parameter estimates including
beta, the estimated regression coefficients
t2, the estimate of
\tau^2
Author(s)
Peter Hoff
Examples
n<-30 ; p<-3
X<-matrix(rnorm(n*p),n,p)
beta<-rnorm(p)
theta<-X%*%beta + rnorm(n)
Sigma<-diag(n)
y<-theta+rnorm(n)
mmleFHP(y,X,Sigma)
[Package FABInference version 0.1 Index]