Description Usage Arguments Value Examples
Calculates the confidence interval using a boot analysis
1 2 3 4 5 6 7 8 9 10 | mcpAUCboot(
dataset,
low.value = NULL,
up.value = NULL,
r = 50,
level = 0.95,
type.interval = "perc",
selection = NULL,
variable = NULL
)
|
dataset |
dataframe or RangedSummarizedExperiment objetc |
low.value |
lower false positive rate value that the function will use to calculate the pAUC |
up.value |
upper false positive rate value that the function will use to calculate the pAUC |
r |
number of iterations. |
level |
confidence level |
type.interval |
String that represent the type of intervals required. The value should be any subset of the values c("norm","basic", "stud", "perc", "bca") or simply "all" which will compute all five types of intervals. |
selection |
vector that will only be used if the parameter "dataset" is a RangedSummarizedExperiment object. This parameter is used to select the variables that will be analysed |
variable |
in case that dataset is a SummarizedExperiment, indicate the Gold Standard |
SummarizedExperiment object with the mcpAUC, the standard desviation, and the lower and upper limits of the confidence interval.
1 2 3 4 | library(fission)
data("fission")
resultsMCboot <- mcpAUCboot(fission,low.value = 0, up.value = 0.25,
selection = c("SPNCRNA.1080","SPAC186.08c"), variable="strain")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.