gOverview {andurinha} | R Documentation |
This function generates a graphic overview of the spectroscopic data.
gOverview(data_abs, data_ndd, fontFamily = NULL)
data_abs |
A data frame, which contains in the first column the wave numbers and in the following columns the samples absorbances. |
data_ndd |
A data frame, which contains in the first column the wave numbers and in the following columns the samples second derivative values. |
fontFamily |
The desired graphic font family. |
It returns a grid with three plots:
The ensemble of all samples spectra.
The ensemble of the second derivative spectra of all samples.
The average and standard deviation spectra.
It returns a grid with two plots:
The ensemble of all samples spectra.
The average and standard deviation spectra.
importSpectra
, findPeaks
and
plotPeaks
# Grapic overview of your raw data
gOverview(andurinhaData)
# Graphic overview of your processed data by findPeaks()
fp <- findPeaks(andurinhaData)
gOverview(fp$dataZ, fp$secondDerivative)