plot.dream: Visualising DREAM results

Description Usage Arguments Details Examples

Description

Plots various visualisation of MCMC chain results

Usage

1
2
## S3 method for class 'dream'
plot(x,interactive=TRUE,...)

Arguments

x

A dream object

interactive

whether to use devAskNewPage (the default) or print all at once

...

Placeholder for S3method

Details

Extracts the second half of the MCMC chains as a coda object

Calls:

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
## Not run: 
  ##To run the equivalent coda visualisations:

    ss <- window(dream.obj$Sequences, start = end(dream.obj$Sequences)/2 + 1)
    plot(ss)
    print(xyplot(ss))

    ## Lattice graphics parameter density plots
    ## Each chain is superposed
    print(densityplot(ss))

    ## All chains combined (treated as one)
    print(densityplot(as.mcmc(as.matrix(ss))))

    ## Alternatively, specify burn-in within the call
    print(densityplot(dream.obj$Sequences, start = end(dream.obj$Sequences)/2 + 1))

    ## Base graphics parameter density plots
    plot(ss,trace=F)

    ## Uses densplot behind the scenes, e.g.
    densplot(ss[,1])

  
## End(Not run)

dream documentation built on May 2, 2019, 5:21 p.m.

Related to plot.dream in dream...