Learn R Programming

PPtree (version 2.3.0)

LDA.Tree: Find PP tree structure using LDA

Description

Find tree structure using linear discriminant in each split.

Usage

LDA.Tree( i.class, i.data, weight = TRUE, ...)

Arguments

i.data
A training data without class information
i.class
class information
weight
weight flag using in LDA index
...
...

Value

Tree.Struct
Tree structure
Alpha.Keep
1D projection of each split
C.Keep
spliting rule for each split

References

Lee, E., Cook, D., and Klinke, S.(2002) Projection Pursuit indices for supervised classification

See Also

PPindex.class, PP.optimize

Examples

Run this code

data(iris)
n <- nrow(iris)
tot <- c(1:n)
n.train <- round(n*0.9)
train <- sample(tot,n.train)
test <- tot[-train]

Tree.result <- LDA.Tree(iris[train,5],iris[train,1:4])
Tree.result

Run the code above in your browser using DataLab