Description Usage Arguments Value See Also Examples
For a specific msSet
object x
, it determines
which processing steps or object elements can be visualized using FUN
.
This function is mainly used to build the GUI for the msProcess package.
1 | msVisual(x, FUN="plot")
|
x |
An object of class |
FUN |
a character string specifying the visualization method.
The options are |
A vector of character string denoting the processing steps or object elements
that can be visualized for the msSet
object x
.
Depending on FUN
, its elements are the valid options for
either the process
argument of plot.msSet
or the what
argument of image.msSet
.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | if (!exists("qcset")) data("qcset", package="msProcess")
## determine which processing steps can be visuazlized using plot for qcset
msVisual(qcset, "plot")
## determine which elements can be visuazlized using image for qcset
msVisual(qcset, "image")
## apply wavelet denoise
denoised <- msDenoise(qcset, FUN="wavelet")
## determine which processing steps can be visuazlized using plot for the denoised spectra
msVisual(denoised, "plot")
## determine which elements can be visuazlized using image for the denoised spectra
msVisual(denoised, "image")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.