diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2016-11-18 16:28:49 +0100 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2016-11-18 16:28:49 +0100 |
commit | e7b2d16306b7d03cde66223c9b27abde928f9447 (patch) | |
tree | 85d650cfb8e071b00a1228566ec788dc1b477809 /man/mkinerrmin.Rd | |
parent | 8bdb67360502bd1a8eb5317d287b094510b4a02c (diff) |
Improve examples for showing with pkgdown
- Use quiet= TRUE in dontrun sections
- Use mkinsub in model definitions
- Avoid \code{\link{}} in titles
Diffstat (limited to 'man/mkinerrmin.Rd')
-rw-r--r-- | man/mkinerrmin.Rd | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/man/mkinerrmin.Rd b/man/mkinerrmin.Rd index 12c9ebd4..9229fc7f 100644 --- a/man/mkinerrmin.Rd +++ b/man/mkinerrmin.Rd @@ -4,9 +4,8 @@ Calculate the minimum error to assume in order to pass the variance test
}
\description{
-This function uses \code{\link{optimize}} in order to iteratively find the
-smallest relative error still resulting in passing the chi-squared test
-as defined in the FOCUS kinetics report from 2006.
+This function finds the smallest relative error still resulting in passing the
+chi-squared test as defined in the FOCUS kinetics report from 2006.
}
\usage{
mkinerrmin(fit, alpha = 0.05)
@@ -34,8 +33,8 @@ mkinerrmin(fit, alpha = 0.05) This function is used internally by \code{\link{summary.mkinfit}}.
}
\examples{
-SFO_SFO = mkinmod(parent = list(type = "SFO", to = "m1"),
- m1 = list(type = "SFO"),
+SFO_SFO = mkinmod(parent = mkinsub("SFO", to = "m1"),
+ m1 = mkinsub("SFO"),
use_of_ff = "max")
fit_FOCUS_D = mkinfit(SFO_SFO, FOCUS_2006_D, quiet = TRUE)
|