Nothing
library(SillyPutty)
set.seed(3568)
nObj <- 110
fake <- matrix(rnorm(50*nObj), nrow=nObj, ncol = 50)
dimnames(fake) <- list(paste("Sample", 1:nObj, sep=''),
paste("Feature", 1:50, sep=''))
dis <- dist(fake)
labels <- sample(6, nObj, replace = TRUE)
names(labels) <- rownames(fake)
x <- SillyPutty(labels, dis)
plot(x@silhouette, col=1:6)
mds <- cmdscale(dis)
plot(mds, pch=16, col=x@cluster, cex=2)
set.seed(8732)
y <- RandomSillyPutty(dis, 6, N = 100)
sr <- summary(y)
sr
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.