From dd30f0d0ff1d8d0cc46aaef6e0917c51fe798f52 Mon Sep 17 00:00:00 2001 From: Johannes Ranke Date: Thu, 19 Jan 2017 10:36:19 +0100 Subject: Move mkin::twa to pfm::max_twa.mkinfit - Add max_twa.mkinfit() recently introduced to mkin as mkin::twa() but never released with it - Add a test to check max_twa.one_box() against analytical solutions in max_twa.mkinfit(). - Clean up R CMD check - Update docs --- docs/reference/one_box.html | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'docs/reference/one_box.html') diff --git a/docs/reference/one_box.html b/docs/reference/one_box.html index 698f887..cb49c02 100644 --- a/docs/reference/one_box.html +++ b/docs/reference/one_box.html @@ -74,22 +74,26 @@ This does not create objects of type ts.

-
one_box(x, ..., t_end = 100, res = 0.01)
+    
one_box(x, ini, ..., t_end = 100, res = 0.01)
 
 # S3 method for numeric
-one_box(x, ..., t_end = 100, res = 0.01)
+one_box(x, ini = 1, ..., t_end = 100, res = 0.01)
 
 # S3 method for character
-one_box(x, parms, ..., t_end = 100, res = 0.01)
+one_box(x, ini = 1, parms, ..., t_end = 100,
+  res = 0.01)
 
 # S3 method for mkinfit
-one_box(x, ..., t_end = 100, res = 0.01)
+one_box(x, ini = c("model", 1), ..., t_end = 100, + res = 0.01)

Arguments

x
When numeric, this is the half-life to be used for an exponential decline. If x is an mkinfit object, the decline is calculated from this object
+
ini
+
The initial amount for each compound
...
Further arguments passed to methods
t_end
-- cgit v1.2.1