https://github.com/cran/BDgraph
Revision ae993cfddd1bf99f5fd650ba3ee6bee6829e1f36 authored by Reza Mohammadi on 20 May 2018, 10:52:56 UTC, committed by cran-robot on 20 May 2018, 10:52:56 UTC
1 parent 5de6bcc
Raw File
Tip revision: ae993cfddd1bf99f5fd650ba3ee6bee6829e1f36 authored by Reza Mohammadi on 20 May 2018, 10:52:56 UTC
version 2.50
Tip revision: ae993cf
NAMESPACE
useDynLib( BDgraph, .registration = TRUE )

importFrom( "Matrix", "Matrix", "printSpMatrix" )

importFrom( "igraph", "graph.adjacency", "plot.igraph", "layout.circle", 
            "make_undirected_graph", "max_cliques" )

importFrom( "grDevices", "dev.new" )

importFrom( "graphics", "abline", "matplot", "par", "plot", "points", "text", "title", "legend" )
		    
importFrom( "stats", "toeplitz", "cor", "sd", 
			"rnorm", "pnorm", "qnorm", 
			"rbinom", "qbinom", 
			"qexp", "qpois",
		    "rchisq", "runif", "smooth.spline" )
		    
importFrom( "utils", "flush.console", "read.table", "object.size" )

export( bdgraph,
		bdgraph.mpl,
		bdgraph.ts,

		transfer,
		plinks,
		select,
		pgraph,
		graph.sim,
		bdgraph.sim,
		bdgraph.npn,
		compare,

		plotcoda,
		traceplot,
		plotroc,
		
		rgwish,
		rgcwish,
		rwish,
		gnorm,
		rmvnorm,
		
		print.bdgraph, 
		plot.bdgraph, 
		summary.bdgraph,
		print.sim, 
		plot.sim,
		
		detect_cores
	   )

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