random.effects: Extract the random effects of the model

Description Usage Arguments Examples

View source: R/random.effects.R

Description

Extract the random effects of the model of the class Bayesthres

Usage

1
random.effects(object, HPDinterval=FALSE, prob=0.95)

Arguments

object

is an object of class "Bayesthres"

HPDinterval

If HPDinterval=TRUE, return the credibility interval for fixed effects model. By default is FALSE. See package coda

prob

A numeric scalar in the interval (0,1) giving the target probability content of the intervals. The nominal probability content of the intervals is the multiple of 1/nrow(obj) nearest to prob

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
# Not run
data(sensory)

Consumer <- factor(sensory$consumer)
Sacarose <- factor(sensory$sacarose)

#### Model 
# Not run
dex1 <- Bayesthresh(cor ~ (1|Consumer) + Sacarose, burn = 0, Write=TRUE,
																			jump = 1, ef.iter = 10, data=sensory) 
random.effects(dex1)
random.effects(dex1, HPDinterval=TRUE)

Bayesthresh documentation built on May 30, 2017, 6:24 a.m.