Description Usage Arguments Details Author(s) References See Also Examples
Store the raw data and optionally, information regarding signal peaks for a number of GCMS runs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | .plotpD(object, runs=1:length(object@rawdata),
mzind=1:nrow(object@rawdata[[1]]), mind=NULL,
plotSampleLabels=TRUE, calcGlobalMax=FALSE, peakCex = 0.8,
plotPeaks=TRUE, plotPeakBoundaries=FALSE, plotPeakLabels=FALSE,
plotMergedPeakLabels=TRUE, mlwd=3,usePeaks=TRUE,
plotAcrossRuns=FALSE, overlap=F, rtrange=NULL, cols=NULL, thin=1,
max.near=median(object@rawrt[[1]]), how.near=50, scale.up=1, ...)
.plotpA(object, xlab="Peaks - run 1", ylab="Peaks - run 2",
plotMatches=TRUE, matchPch=19, matchLwd=3,
matchCex=.5, matchCol="black", col=colorpanel(50, "white", "green", "navyblue"),
breaks=seq(0, 1, length=51), ...)
.plotcA(object, alignment=1, ...)
|
object |
a |
runs |
for |
mzind |
for |
mind |
for |
plotSampleLabels |
for |
calcGlobalMax |
for |
peakCex |
character expansion factor for peak labels |
plotPeaks |
for |
plotPeakBoundaries |
for |
plotPeakLabels |
for |
plotMergedPeakLabels |
for |
mlwd |
for |
usePeaks |
for |
plotAcrossRuns |
for |
overlap |
for |
rtrange |
for |
cols |
for |
thin |
for |
max.near |
for |
how.near |
for |
scale.up |
for |
plotMatches |
for |
xlab |
for |
ylab |
for |
matchPch |
for |
matchLwd |
for |
matchCex |
for |
matchCol |
for |
col |
for |
breaks |
for |
alignment |
for |
... |
further arguments passed to the |
For peakDataset
objects, each TIC is scale to the maximum value
(as specified by the how.near
and max.near
values). The
many parameters gives considerable flexibility of how the TICs can be
visualized.
For peakAlignment
objects, the similarity matrix is plotted and
optionally, the set of matching peaks. clusterAlignment
objects are just a collection of all pairwise peakAlignment
objects.
Mark Robinson
Mark D Robinson (2008). Methods for the analysis of gas chromatography - mass spectrometry data PhD dissertation University of Melbourne.
1 2 3 4 5 6 7 8 9 10 11 12 | require(gcspikelite)
## paths and files
gcmsPath <- paste(find.package("gcspikelite"), "data", sep="/")
cdfFiles <- dir(gcmsPath, "CDF", full=TRUE)
eluFiles <- dir(gcmsPath, "ELU", full=TRUE)
## read data
pd <- peaksDataset(cdfFiles[1:3], mz=seq(50,550), rtrange=c(7.5,8.5))
## image plot
plot(pd, rtrange=c(7.5,8.5), plotPeaks=TRUE, plotPeakLabels=TRUE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.