Description Usage Arguments Details Value Author(s) See Also Examples
Function used in the definition of smooth terms within logbin.smooth
model formulae. The function does not evaluate a smooth — it exists purely to help
set up a model using smooths.
1 2 3 |
... |
variable that this smooth is a function of. Note that unlike |
knots |
unique positions of interior knots of a B-spline basis. Boundary knots are created automatically. |
knot.range |
if At least one of |
The function does not evaluate the variable arguments; the output from this function is used when producing the model matrix, at which point the actual basis functions are constructed.
B
is used to specify an order-3 B-spline basis (which can be
restricted to be monotonically non-decreasing via the
mono
argument in logbin.smooth
). If
length(knot.range) > 1
, models with each of the
specified number of interior knots will be fit, and the model
with the best (smallest) aic.c
will be returned.
Iso
is used to specify an isotonic basis, designed
such that the resulting function has non-negative
increments at each observed covariate value. When
Iso
is used, the resulting function will always be
monotonically non-decreasing, regardless of the value of
mono
.
An object of class "B.smooth"
(for B
) or
"Iso.smooth"
(for Iso
), which is a list with
the following elements:
term |
name of the term
provided in the |
termlabel |
label for the term in the model; e.g. for
term |
knots |
vector of interior knots (if
specified). |
knot.range |
vector of number of interior knots.
|
Mark W. Donoghoe markdonoghoe@gmail.com
s
performs a similar function in the mgcv
package.
1 2 | ## See example(logbin.smooth) for an example of specifying smooths in model
## formulae.
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.