# NOT RUN {
## use iris data
data(iris)
X = as.matrix(iris[,1:4])
label = as.integer(iris$Species)
## try different numbers for neighborhood size
out1 = do.onpp(X, type=c("proportion",0.05))
out2 = do.onpp(X, type=c("proportion",0.1))
out3 = do.onpp(X, type=c("proportion",0.25))
## visualize
opar <- par(no.readonly=TRUE)
par(mfrow=c(1,3))
plot(out1$Y, col=label, main="ONPP::5% connectivity")
plot(out2$Y, col=label, main="ONPP::10% connectivity")
plot(out3$Y, col=label, main="ONPP::25% connectivity")
par(opar)
# }
# NOT RUN {
# }
Run the code above in your browser using DataLab