Description Usage Arguments Value Examples
View source: R/findPvalueCutoff.R
Given a p-value vector resulting from differential gene expression analysis, this function estimates false positive error rates expected by random chance at a series of p-value cutoffs
1 2 3 4 5 6 7 | findPvalueCutoff(
x = NULL,
thresholds = NULL,
range = c(0, 1),
interval = 0.05,
nsims = 1000
)
|
x |
A vector of p-values. |
thresholds |
A vector of manually selected p-value cutoffs at which false positive rate needs to be estimated. |
range |
Limit of lower and upper p-value cutoffs within which false positive rate will be estimated. Default is c(0,1) when thresholds parameter is NULL. |
interval |
Interval used to generate a series of p-values within lower and upper bound given in range porameter. Default is 0.05. |
nsims |
An integer value representing the number of simulated randomized datasets (controlled experiments) to be generated to compute false positive error rate. Default is 1000 but at least 10000 datasets are recommended. |
A named (p-value cutoffs) vector with estimated false positive rate.
1 2 3 4 5 | ## Not run:
findPvalueCutoff(x = pval, thresholds=c(0.0001, 0.001, 0.01, 0.1, 0.2), nsims = 1000)
findPvalueCutoff(x = pval, range= c(0,2), interval= 0.01, nsims = 1000)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.