From a6d61c06d573574cf574ed893cc13808a9e8b785 Mon Sep 17 00:00:00 2001
From: Johannes Ranke
Date: Thu, 19 Jan 2017 09:20:22 +0100
Subject: Fix order of arguments to one_box, correct docs
---
docs/reference/one_box.html | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
(limited to 'docs/reference/one_box.html')
diff --git a/docs/reference/one_box.html b/docs/reference/one_box.html
index c8f8ad3..698f887 100644
--- a/docs/reference/one_box.html
+++ b/docs/reference/one_box.html
@@ -74,28 +74,28 @@
This does not create objects of type ts
.
- one_box(x, t_end = 100, res = 0.01, ...)
+ one_box(x, ..., t_end = 100, res = 0.01)
# S3 method for numeric
-one_box(x, t_end = 100, res = 0.01, ...)
+one_box(x, ..., t_end = 100, res = 0.01)
# S3 method for character
-one_box(x, parms, t_end = 100, res = 0.01, ...)
+one_box(x, parms, ..., t_end = 100, res = 0.01)
# S3 method for mkinfit
-one_box(x, t_end = 100, res = 0.01, ...)
+one_box(x, ..., 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
+ - ...
+ - Further arguments passed to methods
- t_end
- End of the time series
- res
- Resolution of the time series
- - ...
- - Further arguments passed to methods
- parms
- A named numeric vector containing the model parameters
--
cgit v1.2.1