Nothing
consolidatePairs <- function(indices, result.list, equiweight=TRUE, combine.args=list())
# Consolidates results from multiple bin sizes. Returns a table of
# combined p-values and various statistics.
#
# written by Aaron Lun
# created 9 March 2015
# last modified 22 July 2015
{
nset <- length(indices)
if (nset!=length(result.list)) { stop("indices must have same length as result list") }
for (x in seq_len(nset)) {
if (!identical(length(indices[[x]]), nrow(result.list[[x]]))) {
stop("corresponding entries of data and result lists must have same number of entries") }
}
# Boxing them and getting their weights.
if (equiweight) {
weights <- vector("list", nset)
for (x in seq_len(nset)) {
freq <- tabulate(indices[[x]])
weights[[x]] <- 1/freq[indices[[x]]]
}
weights <- unlist(weights)
} else {
weights <- NULL
}
# Combining the p-values.
all.tab <- do.call(rbind, result.list)
result.com <- do.call(combineTests, c(list(ids=unlist(indices),
tab=all.tab, weights=weights), combine.args))
return(result.com)
}
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.