plot_CalibratedMSErr | R Documentation |
Boxes are optionally colored to indicate that a MQ bug was detected or if PTXQC detected a too narrow search window.
plot_CalibratedMSErr(
data,
MQBug_raw_files,
stats,
y_lim,
extra_limit = NA,
title_sub = ""
)
data |
A data.frame with columns 'fc.raw.file', 'mass.error..ppm.' |
MQBug_raw_files |
List of Raw files with invalid calibration values |
stats |
A data.frame with columns 'fc.raw.file', 'outOfCal' |
y_lim |
Range of y-axis |
extra_limit |
Position where a v-line is plotted (for visual guidance) |
title_sub |
Subtitle |
GGplot object
n = c(150, 1000, 1000, 1000)
data = data.frame(fc.raw.file = repEach(letters[4:1], n),
mass.error..ppm. = c(rnorm(n[1], 1, 2.4),
rnorm(n[2], 0.5, 0.5),
rnorm(n[3], 0.1, 0.7),
rnorm(n[4], 0.3, 0.8)))
stats = data.frame(fc.raw.file = letters[4:1],
sd = c(2.4, 0.5, 0.7, 0.8),
outOfCal = c(TRUE, FALSE, FALSE, FALSE))
plot_CalibratedMSErr(data, MQBug_raw_files = letters[1], stats, y_lim = c(-20,20), 15, "subtitle")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.