# NOT RUN {
## load iris data
data(iris)
X = as.matrix(iris[,1:4])
label = as.factor(iris$Species)
## compare with mds using 2 distance metrics
outM <- do.mds(X, ndim=2)
out1 <- do.spe(X, ndim=2)
out2 <- do.spe(X, ndim=2, proximity=function(x){dist(x, method="manhattan")})
## Visualize
opar <- par(no.readonly=TRUE)
par(mfrow=c(1,3))
plot(outM$Y, col=label, main="MDS")
plot(out1$Y, col=label, main="SPE with L2 norm")
plot(out2$Y, col=label, main="SPE with L1 norm")
par(opar)
# }
Run the code above in your browser using DataLab