# NOT RUN {
## use iris data
data(iris)
X = as.matrix(iris[,1:4])
label = as.integer(iris$Species)
## perform MVP with different preprocessings
out1 = do.mvp(X, label)
out2 = do.mvp(X, label, preprocess="decorrelate")
out3 = do.mvp(X, label, preprocess="whiten")
## visualize
opar <- par(no.readonly=TRUE)
par(mfrow=c(1,3))
plot(out1$Y, col=label, main="centering")
plot(out2$Y, col=label, main="decorrelating")
plot(out3$Y, col=label, main="whitening")
par(opar)
# }
# NOT RUN {
# }
Run the code above in your browser using DataLab