# NOT RUN {
## generate data of 3 types with difference
dt1 = aux.gensamples(n=33)-100
dt2 = aux.gensamples(n=33)
dt3 = aux.gensamples(n=33)+100
## merge the data and create a label correspondingly
X = rbind(dt1,dt2,dt3)
label = c(rep(1,33), rep(2,33), rep(3,33))
## try different kernel bandwidth
out1 = do.elde(X, label, t=1)
out2 = do.elde(X, label, t=10)
out3 = do.elde(X, label, t=100)
## visualize
opar <- par(no.readonly=TRUE)
par(mfrow=c(3,1))
plot(out1$Y, col=label, main="ELDE::bandwidth=1")
plot(out2$Y, col=label, main="ELDE::bandwidth=10")
plot(out3$Y, col=label, main="ELDE::bandwidth=100")
par(opar)
# }
# NOT RUN {
# }
Run the code above in your browser using DataLab