# NOT RUN {
## use iris data
data(iris)
X = as.matrix(iris[,1:4])
label = as.integer(iris$Species)
## compare SLPP with LPP
outLPP <- do.lpp(X)
outSLPP <- do.slpp(X, label)
## visualize
opar <- par(no.readonly=TRUE)
par(mfrow=c(1,2))
plot(outLPP$Y, col=label, main="LPP")
plot(outSLPP$Y, col=label, main="SLPP")
par(opar)
# }
Run the code above in your browser using DataLab