Nothing
setMethod("clusterComp", "matrix", function(object, cl, seednum = NULL, B = 100,
sub.frac = 0.8, method = "ave",
distmeth = "euclidean", adj.score = FALSE){
do.clusterComp(object, cl, seednum = seednum, B = B, sub.frac = sub.frac,
method = method, distmeth = distmeth,
adj.score = adj.score)
})
setMethod("clusterComp", "ExpressionSet", function(object, cl, seednum = NULL, B = 100,
sub.frac = 0.8, method = "ave",
distmeth = "euclidean", adj.score = FALSE){
object <- exprs(object)
do.clusterComp(object, cl, seednum = seednum, B = B, sub.frac = sub.frac,
method = method, distmeth = distmeth,
adj.score = adj.score)
})
## Show method
setMethod("show","ClusterComp",
function(object){
stab.out <- matrix(paste(round(object@percent, 0), "%", sep=""), nr = 1)
dimnames(stab.out) <- list("Cluster stability: ", 1:length(object@percent))
cat("Results from running clusterComp:\n")
print(stab.out, quote = FALSE)
cat("Iterations:", object@iterations, "\n")
cat("Subsampling frequency: ", object@freq * 100, "%\n", sep="")
cat("Agglomeration method:", object@method, "\n")
cat("Original cluster membership:\n", object@clusters,"\n")
})
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.