R/plot.FactorNetworks.R

Defines functions plot.FactorNetworks

Documented in plot.FactorNetworks

plot.FactorNetworks <-
function (x, interactiveMode=T, ...)
{
	interactivePrompt<-"Press return for next plot..."
	for (Level in names(x))
	{
		plot(x[[Level]]$Network,Level)
		if (interactiveMode & Level!=names(x)[length(x)]){line <- readline(interactivePrompt)}
	}
	if(interactiveMode){line <- readline("Press return to close the plot...");dev.off()}
}

Try the stringgaussnet package in your browser

Any scripts or data that you put into this service are public.

stringgaussnet documentation built on May 29, 2017, 10:50 a.m.