plot_TopNoverRT: Plot line graph of TopN over Retention time.

View source: R/fcn_plots.R

plot_TopNoverRTR Documentation

Plot line graph of TopN over Retention time.

Description

Number of Raw files must be 6 at most. Function will stop otherwise.

Usage

plot_TopNoverRT(data)

Arguments

data

A data.frame with columns 'fc.raw.file', 'rRT', 'topN'

Value

GGplot object

Examples

  data = data.frame(fc.raw.file = rep(letters[1:3], each=100),
                    rRT = seq(20, 120, length.out = 100),
                    topN = c(round(runif(100, min=3, max=5)),
                             round(runif(100, min=5, max=8)),
                             round(runif(100, min=1, max=3)))
                    )
  plot_TopNoverRT(data)


PTXQC documentation built on July 26, 2023, 5:27 p.m.