View source: R/peakAsymmetryFactorCalculator.R
| peakAsymmetryFactorCalculator | R Documentation |
This function calculates an asymmetry factor for a chromatographic peak.
peakAsymmetryFactorCalculator(rt, int)
rt |
a vector of retention times for the chromatographic peak. |
int |
a vector of intensities corresponding to the vector of retention times for the chromatographic peak. |
asymmetry of the chromatographic peak. 1 is for very symmetric peak.
data(peak_spline)
rt <- peak_spline[, 1]
int <- peak_spline[, 2] - peak_spline[, 3]
peakAsymmetryFactorCalculator(rt, int)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.