Nothing
## helper script to test suite
## this creates a train/test dataset split based on the iris dataset
i.columns <- c("Sepal.Length", "Sepal.Width", "Petal.Length", "Petal.Width")
# training set
i.train.indexes <- c(1:20, 51:70, 111:130)
i.train <- iris[i.train.indexes, i.columns]
i.train.labels <- iris[i.train.indexes, "Species"]
rownames(i.train) <- paste0("X", seq_len(nrow(i.train)))
i.train.u <- umap(i.train, n_neighbors=10, random_state=123)
# testing set (for prediction)
i.test.indexes <- c(46:50, 96:100, 146:150)
i.test <- iris[i.test.indexes, i.columns]
i.test.labels <- iris[i.test.indexes, "Species"]
rownames(i.test) <- paste0("Test", seq_len(nrow(i.test)))
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.