Uncorrelated LDA (ULDA) is an extension of LDA by using the uncorrelated discriminant transformation and Kahrunen-Loeve expansion of the basis.
do.ulda(X, label, ndim = 2, preprocess = c("center", "scale", "cscale",
"whiten", "decorrelate"))
an
a length-
an integer-valued target dimension.
an additional option for preprocessing the data.
Default is "center". See also aux.preprocess
for more details.
a named list containing
an
a list containing information for out-of-sample prediction.
a
jin_face_2001Rdimtools
# NOT RUN {
## generate data of 3 types with clear difference
dt1 = aux.gensamples(n=33)-100
dt2 = aux.gensamples(n=33)
dt3 = aux.gensamples(n=33)+100
## merge the data and create a label correspondingly
X = rbind(dt1,dt2,dt3)
label = c(rep(1,33), rep(2,33), rep(3,33))
## compare with LDA
out1 = do.lda(X, label)
out2 = do.ulda(X, label)
## visualize
par(mfrow=c(1,2))
plot(out1$Y[,1], out1$Y[,2], main="LDA")
plot(out2$Y[,1], out2$Y[,2], main="Uncorrelated LDA")
# }
# NOT RUN {
# }
Run the code above in your browser using DataLab