We know that random effects are estimated as a probability distribution rather than each individual random coefficients. Take the simplest random intercept model as an example:
$biomass_{i,j}$ ~ $treatment_{i,j}$ + $site_{i}$, $site_{i}$~$N(0, \sigma^2)$
My questions are:
1) In this case, how can I interpret the estimated random intercept per site $\widehat{site}_{i} $? Can I give judgement on the differences in $site_{i}$? For instance if $site_{1}=1.2$ and $site_{2}=-0.8$, can I say that site 1 has a higher biomass than site 2? I guess not, because each site is supposed to follow i.i.d. $N(0, \sigma^2)$, and it means if we take another sample, the situation might change into $site_{1}=-0.8$ and $site_{2}=1.2$.
2) If we can not interpret like in 1), what's the best way to intepret $\widehat{site}_{i} $?
3) In R-Inla, the estimated random spatial effect from a GMRF distribution is often used to interpret a (detected) spatial distribution. Why can we do so?
Thanks