plotAllMsSpectra: function for plotting all Mass Spectrum

Description Usage Arguments Examples

View source: R/PlotAllMsSpectra.R

Description

Plot all Mass spectrum simultaneously and write them in a pdf file

Usage

1

Arguments

x

MassSpectrm slot of S4 class parse.Shimadzu

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
##---- Should be DIRECTLY executable !! ----
##-- ==>  Define data, use random,
##--	or do  help(data=index)  for the standard data sets.

## The function is currently defined as
function (x) 
{
    no <- x$a[[2]]
    no <- gsub("# of Peaks", "Number of Peaks = ", no)
    y <- data.frame(x$b)
    colnames(y) <- c("mass", "absolute", "relative")
    plot(as.character(y$mass), as.character(y$relative), type = "h", 
        xlab = "Mass/Charge", ylab = "Relative Intensity", col = ifelse(y$relative == 
            "100.00", "red", "black"), main = no)
  }

HTDA documentation built on May 2, 2019, 4:53 p.m.