plotBGpvalues {SIN} | R Documentation |
This function plots the simultaneous p-values for SIN model selection for bidirected graphs.
plotBGpvalues(pvals, legend=TRUE, legendpos=NULL)
pvals |
a matrix of p-values. |
legend |
a Boolean. |
legendpos |
a numerical vector of length 2. |
A plot illustrating the simultaneous p-values. If
legend==TRUE
, then a legend giving information on the variable
labelling is drawn. Optionally, the position of the legend can be
specified by legendpos
.
Drton, M. \& Perlman, M.D. (2004) Model Selection for Gaussian
Concentration Graphs. Biometrika 91(3): 591-602.
Drton, M. \& Perlman, M.D. (2008) A SINful Approach to Gaussian
Graphical Model Selection. J. Statist. Plann. Inference
138(4): 1179-1200.
data(stressful) pvals <- holm(sinBG(stressful$corr,stressful$n)) ## Not run: plotBGpvalues(pvals) ## Not run: plotBGpvalues(pvals, legend=FALSE) ## Not run: plotBGpvalues(pvals, legendpos=c(5,0.5)) ## Not run: plotBGpvalues(pvals, legend=TRUE, legendpos=c(5,0.5))