residuals.cal {quantchem} | R Documentation |
Extract residuals of all fitted calibration models.
residuals.cal(object, ...)
object |
an object inheriting from 'cal' ('lmcal' or 'nlscal') |
... |
additional arguments, currently ignored |
A data frame, containing residuals of all models with their respective names
Lukasz Komsta
set.seed(1234) x=rep(1:8,5) y=jitter(sqrt(x)) fit=lmcal(x,y) residuals(fit) boxplot(residuals(fit))