CalculateBootCI | R Documentation |
Function to calculate confidence interval from a numeric matrix on a column-wise basis. Code is adapted and basically identical to the Utilities.R script from the Bioconductor package ChIPSeeker. Main intend is to serve as helper function for the PlotProfiles() function.
CalculateBootCI(cts, Times = 500, Cores = 1, CI = 0.95)
cts |
a count matrix |
Times |
number of resamplings |
Cores |
numbers of mclapply workers |
CI |
the confidence interval, default is 95% |
Alexander Toenges
cts <- sapply(seq(1,100), function(x) rnorm(100, 1)) ci <- CalculateBootCI(cts = cts, Times = 500, Cores = 8, CI = 0.95)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.