From 91a5834dd701211f929fd25419dc34561ce3b4e7 Mon Sep 17 00:00:00 2001 From: Johannes Ranke Date: Fri, 14 Feb 2025 09:15:20 +0100 Subject: Initialize dev docs --- docs/dev/reference/residuals.mkinfit.html | 121 ++++++++++++++++++++++++++++++ 1 file changed, 121 insertions(+) create mode 100644 docs/dev/reference/residuals.mkinfit.html (limited to 'docs/dev/reference/residuals.mkinfit.html') diff --git a/docs/dev/reference/residuals.mkinfit.html b/docs/dev/reference/residuals.mkinfit.html new file mode 100644 index 00000000..cd5c7aff --- /dev/null +++ b/docs/dev/reference/residuals.mkinfit.html @@ -0,0 +1,121 @@ + +Extract residuals from an mkinfit model — residuals.mkinfit • mkin + Skip to contents + + +
+
+
+ +
+

Extract residuals from an mkinfit model

+
+ +
+

Usage

+
# S3 method for class '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.09726374 -0.13912142 -0.15351210  0.73388322 -0.08657004 -0.93204702
+#> [7] -0.03269080  1.45347823 -0.88423697
+residuals(f, standardized = TRUE)
+#> [1]  0.13969917 -0.19981904 -0.22048826  1.05407091 -0.12433989 -1.33869208
+#> [7] -0.04695355  2.08761977 -1.27002287
+
+
+
+ + +
+ + + + + + + -- cgit v1.2.1