From 7091d3738e7e55acb20edb88772b228f6f5b6c98 Mon Sep 17 00:00:00 2001 From: Johannes Ranke Date: Thu, 31 Oct 2019 01:55:01 +0100 Subject: Add likelihood ratio test and other methods, fixes The likelihood ratio test method is lrtest, in addition, methods for update and residuals were added. --- docs/reference/residuals.mkinfit.html | 196 ++++++++++++++++++++++++++++++++++ 1 file changed, 196 insertions(+) create mode 100644 docs/reference/residuals.mkinfit.html (limited to 'docs/reference/residuals.mkinfit.html') diff --git a/docs/reference/residuals.mkinfit.html b/docs/reference/residuals.mkinfit.html new file mode 100644 index 00000000..7dd25012 --- /dev/null +++ b/docs/reference/residuals.mkinfit.html @@ -0,0 +1,196 @@ + + + + + + + + +Extract residuals from an mkinfit model — residuals.mkinfit • mkin + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + + +
+ +
+
+ + +
+

Extract residuals from an mkinfit model

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

Arguments

+ + + + + + + + + + + + + + +
object

An 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
+
+ +
+ + + +
+ + + + + + + + -- cgit v1.2.1