getpspectra(CAMERA)
getpspectra()所属R语言包:CAMERA
Retrieve a peaklist of one or more pseudospectra
检索peaklist一个或多个伪谱
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Extract group(s) from a xsAnnotate object. Returns a peaklist as matrix with annotated peaks.
从xsAnnotate对象提取组(S组)。返回作为与注释峰矩阵peaklist。
用法----------Usage----------
getpspectra(object, grp)
参数----------Arguments----------
参数:object
xsAnnotate object
xsAnnotate对象
参数:grp
index of pseudo-spectra-group
伪谱组指数
Details
详情----------Details----------
xsAnnotate groups LC/MS Peaklist after there EIC correlation and FWHM. These function extract one or more of these so called "pseudo spectra groups" with include the peaklist with there annotations. The annotation depends on a before called findAdducts() ( and findIsotopes() ). Important: The indices for the isotopes, are those from the whole peaklist. See getPeaklist().
LC /质谱Peaklist的xsAnnotate组后,有三电的相关性和半高宽。这些功能提取一个或多个这些所谓的“伪光谱组”包括peaklist有注释。注释取决于前findAdducts()(findIsotopes())。重要的是:同位素的指数,是从整个peaklist。看到getPeaklist()。
作者(S)----------Author(s)----------
Carsten Kuhl <ckuhl@ipb-halle.de>
举例----------Examples----------
library(CAMERA)
file <- system.file('mzdata/MM14.mzdata', package = "CAMERA")
xs <- xcmsSet(c(file), method="centWave", ppm=30, peakwidth=c(5,10))
an <- xsAnnotate(xs)
an <- groupFWHM(an)
#For one group[为一组]
peaklist <- getpspectra(an, 1)
#For two groups[对于两组]
peaklist <- getpspectra(an, c(1,2))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|