Description Usage Arguments Details Value Author(s) See Also Examples
Plot the density of chromatographic peaks along the retention
time axis and indicate which peaks would be (or were) grouped into the
same feature based using the peak density correspondence method.
Settings for the peak density method can be passed with an
PeakDensityParam object to parameter param
. If the object
contains
correspondence results and the correspondence was performed with the
peak groups method, the results from that correspondence can be
visualized setting simulate = FALSE
.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
object |
A XCMSnExp object with identified chromatographic peaks. |
mz |
|
rt |
|
param |
PeakDensityParam from which parameters for the
peak density correspondence algorithm can be extracted. If not provided
and if |
simulate |
|
col |
Color to be used for the individual samples. Length has to be 1
or equal to the number of samples in |
xlab |
|
ylab |
|
xlim |
|
main |
|
type |
|
... |
Additional parameters to be passed to the |
The plotChromPeakDensity
function allows to evaluate
different settings for the peak density on an mz slice of
interest (e.g. containing chromatographic peaks corresponding to a known
metabolite).
The plot shows the individual peaks that were detected within the
specified mz
slice at their retention time (x-axis) and sample in
which they were detected (y-axis). The density function is plotted as a
black line. Parameters for the density
function are taken from the
param
object. Grey rectangles indicate which chromatographic peaks
would be grouped into a feature by the peak density
correspondence
method. Parameters for the algorithm are also taken from param
.
See groupChromPeaks-density()
for more information about the
algorithm and its supported settings.
The function is called for its side effect, i.e. to create a plot.
Johannes Rainer
groupChromPeaks-density()
for details on the
peak density correspondence method and supported settings.
1 2 3 4 5 6 7 8 9 10 11 | ## Load a test data set with detected peaks
data(faahko_sub)
## Update the path to the files for the local system
dirname(faahko_sub) <- system.file("cdf/KO", package = "faahKO")
## Plot the chromatographic peak density for a specific mz range to evaluate
## different peak density correspondence settings.
mzr <- c(305.05, 305.15)
plotChromPeakDensity(faahko_sub, mz = mzr, pch = 16,
param = PeakDensityParam(sampleGroups = rep(1, length(fileNames(faahko_sub)))))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.