Extract residuals from an mkinfit model

# S3 method for mkinfit
residuals(object, standardized = FALSE, ...)

Arguments

object

A mkinfit object

standardized

Should the residuals be standardized by dividing by the standard deviation obtained from the fitted error model?

...

Not used

Examples

f <- mkinfit("DFOP", FOCUS_2006_C, quiet = TRUE) residuals(f)
#> [1] 0.09726306 -0.13912135 -0.15351176 0.73388319 -0.08657030 -0.93204730 #> [7] -0.03269102 1.45347805 -0.88423710
residuals(f, standardized = TRUE)
#> [1] 0.13969820 -0.19981894 -0.22048777 1.05407086 -0.12434027 -1.33869248 #> [7] -0.04695387 2.08761953 -1.27002305