View source: R/peakDerivativeSkewnessCalculator.R
peakDerivativeSkewnessCalculator | R Documentation |
This function calculates skewness of a chromatographic peak using first order degree of numerical differentiation.
peakDerivativeSkewnessCalculator(rt, int)
rt |
a vector representing retention times of the chromatographic peak. |
int |
a vector representing intensities of the chromatographic peak. |
Skewness of a chromatographic peak. 1 is for very symmetric peak. Minimum is 0 from this function.
data(peak_spline)
rt <- peak_spline[, 1]
int <- peak_spline[, 2]
peakDerivativeSkewnessCalculator(rt, int)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.