plot_CountData | R Documentation |
The input is a data.frame with protein/peptide counts, where 'category' designates the origin of information (genuine ID, transferred ID, or both).
plot_CountData(data, y_max, thresh_line, title)
data |
A data.frame with columns 'fc.raw.file', 'counts', 'category' |
y_max |
Plot limit of y-axis |
thresh_line |
Position of a threshold line, indicating the usual target value |
title |
Main title, and optional subtitle (if vector of length 2 is provided) |
GGplot object
data = data.frame(fc.raw.file = rep(c("file A", "file B"), each=3),
counts = c(3674, 593, 1120, 2300, 400, 600),
category = c("genuine","genuine+transferred","transferred"))
plot_CountData(data, 6000, 4000, c("EVD: Protein Groups count", "gain: 23%"))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.