Subject: | XploRe Application Guide |
See XploRe: |
Quantlet: | clust15 | |
Description: | clusters with fuzzy-c-means method for the butterfly data | |
Download: | clust15.xpl |
library("xclust") z=read("butterfly.dat") x=z[,2:3] c=2 m=1.25 e=0.001 alpha=0.9 fcm=xcfcme(x,c,m,e,alpha) ; apply fuzzy-c-means clustering fcm.clus d=createdisplay(1,1) setmaskp(x,fcm.clus,fcm.clus+3,8) show(d,1,1,x) title="Fuzzy-c-means for Butterfly Data" setgopt(d,1,1,"title", title)
Subject: | XploRe Application Guide |
See XploRe: |