View source: R/plotRidgeList.R
plotRidgeList | R Documentation |
Plot the ridge list returned by getRidge()
plotRidgeList(
ridgeList,
wCoefs = NULL,
range = NULL,
colorMap = "RYB",
main = NULL,
pch = ".",
cex = 3,
...
)
ridgeList |
returned by |
wCoefs |
2-D CWT coefficients |
range |
plot range of m/z index |
colorMap |
colorMap to plot the points of local maximum |
main |
parameter of |
pch |
parameter of |
cex |
parameter of |
... |
other parameters of |
No value is returned; this function is called for its side effects (plot).
Pan Du
getRidge()
data(exampleMS)
scales <- seq(1, 64, 3)
wCoefs <- cwt(exampleMS[5000:11000], scales = scales, wavelet = "mexh")
localMax <- getLocalMaximumCWT(wCoefs)
ridgeList <- getRidge(localMax)
plotRidgeList(ridgeList)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.