https://github.com/cran/BDgraph
Raw File
Tip revision: 48433f57016e4cc2653fb75c629e8dc4b6ebec7d authored by Abdolreza Mohammadi on 19 December 2014, 07:26:31 UTC
version 2.14
Tip revision: 48433f5
print.simulate.Rd
\name{print.simulate}
\alias{print.simulate}

\title{
 Print function for "bdgraph.sim" output
}
\description{
Print the sample size, the number of nodes, number of linkes, type and sparsity of the true graph.  
}
\usage{
\method{print}{simulate}( x, ... )
}

\arguments{
  \item{x}{ An object with S3 class "simulate". }
  \item{\dots}{ System reserved (no specific usege). }
}
\references{
Mohammadi, A. and Wit, E. C. (2014). Bayesian structure learning in sparse Gaussian 
graphical models, Bayesian Analysis, acceped. \url{http://arxiv.org/abs/1210.5371v6}
}
\author{
Abdolreza Mohammadi and Ernst Wit
}
\seealso{
\code{\link{bdgraph.sim}}
}
\examples{
\dontrun{
# generating synthetic multivariate normal data from a 'random' graph 
data.sim <- bdgraph.sim( n = 10, p = 8, vis = TRUE )

print(data.sim)
}
}
back to top