View source: R/peakGaussianityCalculator.R
peakGaussianityCalculator | R Documentation |
This module measures gaussianity of chromatographic peak using Pearson correlation coefficients (\rho
) at top 80 percent of peak.
peakGaussianityCalculator(RT, Int, BL, gauge = 0.8)
RT |
a vector of retention times of the chromatographic peak. |
Int |
a vector of intensities of the chromatographic peak. |
BL |
a vector of baseline of the chromatographic peak. |
gauge |
represents the gauge height of peak for Gaussianity measurement. |
Gaussianity of the chromatographic peak.
data("peak_spline")
RT <- peak_spline[, 1]
Int <- peak_spline[, 2]
BL <- peak_spline[, 3]
peakGaussianityCalculator(RT, Int, BL, gauge = 0.8)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.