https://github.com/cran/BDgraph
Raw File
Tip revision: a2823c173e28007f41e199d5475dd270a56dd0bb authored by Abdolreza Mohammadi on 21 August 2015, 18:04:28 UTC
version 2.20
Tip revision: a2823c1
NAMESPACE
useDynLib( "BDgraph" )
import( "Matrix", "igraph" )
importFrom("grDevices", "dev.new")
importFrom("graphics", "abline", "matplot", "par", "plot", "points",
		 "text", "title")
importFrom("stats", "cor", "pnorm", "qbinom", "qexp", "qnorm", "qpois",
		 "rbinom", "rchisq", "rnorm", "runif", "sd", "smooth.spline")
importFrom("utils", "flush.console")

useDynLib( BDgraph, .registration = TRUE )
export( bdgraph,

		phat,
		select,
		prob,
		bdgraph.sim,
		bdgraph.npn,
		compare,

		plotcoda,
		traceplot,
		plotroc,
		
		rgwish,
		rwish,
		I.g,

		print.bdgraph, plot.bdgraph, summary.bdgraph,
		print.sim, plot.sim
		)

S3method( "summary", "bdgraph" )
S3method( "plot", "bdgraph" )
S3method( "print", "bdgraph" )
S3method( "plot", "sim" )
S3method( "print", "sim" )
back to top