前回、グラフを描くのにつかったコードを関数化してみる。例によってエラーチェックなどは最低限しかしていない。 library(ggplot2) qplot.mcmc.list <- function(data, type = "trace", nrow = NULL, ncol = NULL, xlab = "Interactions", ylab = "Value", col = "black") { if (class(data) != "mcmc.list") { stop("class of data is not mcmc.list.") } if (type != "trace" & type != "density") { stop("type is not 'trace' nor 'density'.") } n.var <- length(varnames(data)) x