Description Usage Arguments Details Value Examples
Return mass/charge ration, absolute intensity and relative intensity for the given peak.
1 | IndiMsScan(x, i)
|
x |
MassSpectrm slot of S4 class parse.Shimadzu. |
i |
series number of peaks which you want to plot |
Function to extract m/z and intensity from each scan of Mass Spectrum
Return a data.frame of mass/charge ration, absolute intensity and relative intensity
1 2 3 4 5 6 7 8 9 10 11 | ##---- 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, i)
{
y <- data.frame(x[[i]]$b)
colnames(y) <- c("mass", "absolute", "relative")
return(y)
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.