Nothing
generate_euclidean <-
function(ttmap_part1_hda, select){
dd <- dist(t(ttmap_part1_hda$Dc.Dmat[select, ]),
method = "euclidean")
dd <- as.matrix(dd)
if(sum(is.na(dd)) != 0){
for(i in seq_len(dim(dd)[1])){
for(j in seq_len(dim(dd)[2])){
if(is.na(dd[i, j]) == TRUE) dd[i, j] <- 0
}
}
}
return(dd)
}
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.