Description Usage Arguments Value Examples
Computes credible intervals for Model Parameters
1 2 |
object |
a fitted model object of class |
parm |
a specification (not yet implemented) of which parameters are to be given credible sets, either a vector of numbers or a vector of names. If missing, all parameters are considered. |
level |
the credible interval required. |
... |
additional argument(s) for methods. |
A matrix (or vector) with columns giving lower and upper credible limits for each parameter. These will be labeled (1-level)/2 and 1-(1-level)/2 in % (by default 2.5% and 97.5%).
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | ## ----dobson-------------------------------------------------------------------
## Dobson (1990) Page 93: Randomized Controlled Trial :
counts <- c(18,17,15,20,10,20,25,13,12)
outcome <- gl(3,1,9)
treatment <- gl(3,3)
## Prior mean vector
mu<-matrix(0,5)
mu[1,1]=log(mean(counts))
## Prior standard deviation and Variance
mysd<-1
V=((mysd)^2)*diag(5)
## Call to glmb
glmb.D93<-glmb(n=1000,counts ~ outcome + treatment,
family = poisson(),pfamily=dNormal(mu=mu,Sigma=V))
## ----glmb confint-------------------------------------------------------------
confint(glmb.D93)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.