print.summary.p.fdr {FDRestimation} | R Documentation |
Print the summary of p.fdr.object
Description
This function prints the summary a p.fdr.object.
Usage
## S3 method for class 'summary.p.fdr'
print(x, digits = 3, ...)
Arguments
x |
A list of output from the summary.p.fdr function. |
digits |
A numeric value for the number of desired digits in the summary output. Defaults to 3. |
... |
Further arguments passed to or from other methods. |
Details
We run into errors or warnings when
References
Romain Francois (2014). bibtex: bibtex parser. R package version 0.4.0.
R Core Team (2016). R: A Language and Environment for Statistical Computing. R Foundation for Statistical Computing, Vienna, Austria. ISBN 3-900051-07-0, https://www.R-project.org/.
Murray MH, Blume JD (2020). “False Discovery Rate Computation: Illustrations and Modifications.” 2010.04680.
See Also
Examples
# Example 1
pi0 = 0.8
pi1 = 1-pi0
n = 10
n.0 = ceiling(n*pi0)
n.1 = n-n.0
sim.data = c(rnorm(n.1,5,1),rnorm(n.0,0,1))
sim.data.p = 2*pnorm(-abs(sim.data))
fdr.output = p.fdr(pvalues=sim.data.p, adjust.method="BH")
summary(fdr.output)
[Package FDRestimation version 1.0.1 Index]