Read.Tree {mau} | R Documentation |
Read a csv file where the decision tree is defined.
Read.Tree(file, skip, nrows)
file |
input csv file containing the tree. |
skip |
starting row for read. |
nrows |
number of rows to read. |
data.table with utilities.
Pedro Guarderas, Andrés Lopez
Read.Utilities
, Make.Decision.Tree
library( data.table )
library( igraph )
file<-system.file("extdata", "tree.csv", package = "mau" )
sheetIndex<-1
tree.data<-Read.Tree( file, skip = 0, nrows = 8 )