msVisual {msProcess} | R Documentation |
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.
msVisual(x, FUN="plot")
x |
An object of class msSet . |
FUN |
a character string specifying the visualization method.
The options are "plot" and "image" . Default: "plot" . |
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
.
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")