RM_beta_eblue {agfh} | R Documentation |
Traditional EBLUE Estimator of Beta
Description
Traditional EBLUE Estimator of Beta
Usage
RM_beta_eblue(X, Y, D, theta_var_est)
Arguments
X |
observed independent data to be analyzed |
Y |
observed dependent data to be analyzed |
D |
known precisions of response |
theta_var_est |
estimate of variance term for latent model |
Details
Traditional EBLUE estimator of beta.
Value
Returns a vector estimate of beta.
Source
Marten Thompson thom7058@umn.edu
Examples
X <- matrix(1:10, ncol=1)
Y <- 2*X + rnorm(10, sd=1.1)
D <- rep(1, 10)
th.var.est <- 0.1
RM_beta_eblue(X, Y, D, th.var.est)
[Package agfh version 0.2.1 Index]