randomDag | R Documentation |
randomDag
is the Directed Acyclic Graphs generator.
randomDag(seed = NULL, numNodes = 10, numEdges = 10, java.parameters = NULL)
numNodes |
integer indicating a number of nodes being generated. By default, |
numEdges |
integer indicating a number of edges being generated. By default, |
java.parameters |
string indicating an optional parameters for JVM.
For example, java.parameters = "-Xmx1024M". By default,
|
More detail about randomDag implementation, please visit the java documentation.
A list containing the randomDag's parameters, the input dataset, the result's nodes, and the result's edges.
randomDag <- randomDag(numNodes = 10, numEdges = 10)
randomDag$parameters #Show the randomDag's parameters
randomDag$nodes #Show the result's nodes
randomDag$edges #Show the result's edges
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.