# NOT RUN {
## use iris data
data(iris)
X = as.matrix(iris[,1:4])
label = as.integer(iris$Species)
#### try different neighborhood size
out1 = do.udfs(X, k=5)
out2 = do.udfs(X, k=10)
out3 = do.udfs(X, k=25)
#### visualize
opar = par(no.readonly=TRUE)
par(mfrow=c(1,3))
plot(out1$Y, col=label, main="UDFS::k=5")
plot(out2$Y, col=label, main="UDFS::k=10")
plot(out3$Y, col=label, main="UDFS::k=25")
par(opar)
# }
# NOT RUN {
# }
Run the code above in your browser using DataLab