View source: R/plot.fdr_table.R
plot.fdr_table | R Documentation |
This function created standard plots from results of class "fdr_table" as produced by e.g. the function assess_fdr_overall() visualizig ID numbers in dependence of estimated FDR and also estimated FDR in dependence of m_score cutoff.
## S3 method for class 'fdr_table'
plot(x, output = "Rconsole", filename = "FDR_report_overall", ...)
x |
List of class "fdr_table" as produced e.g. by the function assess_fdr_overall() from this package. |
output |
Choose output type. "pdf_csv" creates the output as files in the working directory, "Rconsole" triggers delivery of the output to the console enabling further computation or custom plotting / output. |
filename |
Basename for output files to be created (if output = "pdf_csv" has been selected). |
... |
Extra arguments passed on to functions inside this. |
Plots in Rconsole or report files.
Moritz Heusel
{
data("OpenSWATH_data", package="SWATH2stats")
data("Study_design", package="SWATH2stats")
data <- sample_annotation(OpenSWATH_data, Study_design)
x <- assess_fdr_overall(data, FFT=0.7, output="Rconsole", plot=FALSE)
plot(x, output="Rconsole", filename="Assess_fdr_overall_testplot")
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.