# 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
Y = rbind(dt1,dt2,dt3)
label = c(rep(1,33), rep(2,33), rep(3,33))
## try different regularization parameters
out1 <- do.rlda(Y, label, alpha=0.1)
out2 <- do.rlda(Y, label, alpha=1)
out3 <- do.rlda(Y, label, alpha=10)
## visualize
par(mfrow=c(1,3))
plot(out1$Y[,1], out1$Y[,2], main="alpha=0.1")
plot(out2$Y[,1], out2$Y[,2], main="alpha=1")
plot(out3$Y[,1], out3$Y[,2], main="alpha=10")
# }
# NOT RUN {
# }
Run the code above in your browser using DataLab