View source: R/Spectra_visulization.R
PerformDataInspect | R Documentation |
This functions provide a path for users to visually inspect their raw data before the data trimming so as to remove the dirty or significantly uneluted peaks.
PerformDataInspect(
datapath = NULL,
rt.range = c(0, 0),
mz.range = c(0, 0),
dimension = "3D",
res = 100
)
datapath |
Character, the path of the raw MS data files (.mzXML, .CDF and .mzML) for the visual and intuitive data inspectation or the file folder (if only a folder path provided, the first file will be inspected). |
rt.range |
Numerics, a congregation of two values to define the lower and upper RT range (seconds) for users to inspect. This is an optional parameter, if absent, will display the MS of the whole RT range. |
mz.range |
Numerics, a congregation of two values to define the lower and upper mz range for users to inspect. This is an optional parameter, if absent, will display the MS of the whole mz range. |
dimension |
Character, the dimension for sample to display, including '2D' or '3D'. The default is '3D'. |
res |
Numeric, the resolution for data inspectation. The larger the value, the higher the resolution. The default value is 100. This value is usually clearly enough and also give consideration to the speed. |
will output a figure for viewing the data structure
Zhiqiang Pang zhiqiang.pang@mail.mcgill.ca Jeff Xia jeff.xia@mcgill.ca Mcgill University License: GNU GPL (>= 2)
## Get raw spectra files
DataFiles <- dir(system.file("mzData", package = "mtbls2"), full.names = TRUE,
recursive = TRUE)[c(10:12, 14:16)]
PerformDataInspect(DataFiles[1])
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.