check.bugsCheck {rube}R Documentation

Show the model check for a rube bugsCheck object

Description

Show the previously computed model check for a rube bugsCheck object.

Usage

## S3 method for class 'bugsCheck'
check(x, ...)

Arguments

x

a rube bugsCheck object as created by rube()

...

optional arguments passed to default

Details

Displays the code check.

Value

Returns NULL invisibly.

Author(s)

Howard J. Seltman <hseltman@stat.cmu.edu>

Examples

  m = "model {
        for (i in 1:5) {
          x[i]~dnorm(mu,1)
        }
        mu~dnorm(0,0.01)
      }"
  check(rube(m))

[Package rube version 0.3-11 Index]