Nothing
# pairwise.model.stability demo
# For demonstration purposes only!!!
some.numbers <- seq(20)
# A list containing the metabolite matrices for each algorithm
# As an example, let's say we have the output from two different models
# such as plsda and random forest.
# matrix of Metabolites identified (e.g. 5 trials)
plsda <-
replicate(5, paste("Metabolite", sample(some.numbers, 10), sep="_"))
rf <-
replicate(5, paste("Metabolite", sample(some.numbers, 10), sep="_"))
features <- list(plsda=plsda, rf=rf)
# nc may be omitted unless using kuncheva
pairwise.model.stability(features, "kuncheva", nc=20)
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.