plot.mnem_mcmc {mnem} | R Documentation |
Plot mnem_mcmc result.
## S3 method for class 'mnem_mcmc' plot(x, starts = NULL, burnin = 0, ...)
x |
mnem_mcmc object |
starts |
restarts of mcmc as used in mnem function |
burnin |
number of iteration to start from |
... |
parameters for function ggplot2 |
visualization of mcmc result with Rgraphviz
Viktoria Brunner
sim <- simData(Sgenes = 3, Egenes = 2, Nems = 2, mw = c(0.4,0.6)) data <- (sim$data - 0.5)/0.5 data <- data + rnorm(length(data), 0, 1) result <- mnem(data, k = 2, starts = 1) plot(result)