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