Make.Decision.Tree {mau} | R Documentation |
Evaluate utilities
Description
Create decision tree for MAUT models exporting to an igraph object.
Usage
Make.Decision.Tree(tree.data)
Arguments
tree.data |
data.table with decision tree information. |
Details
With the tree information loaded by the Read.Tree
the decision tree
could be represented like an igraph object.
Value
igraph object containing the graph of the decision tree.
Author(s)
Pedro Guarderas, Andrés Lopez pedro.felipe.guarderas@gmail.com
See Also
Examples
library( data.table )
library( igraph )
file<-system.file("extdata", "tree.csv", package = "mau" )
tree.data<-Read.Tree( file, skip = 0, nrows = 8 )
tree<-Make.Decision.Tree( tree.data )
plot( tree )
[Package mau version 0.1.2 Index]