bamlss (version 1.2-3)

rb: Random Bits for BAMLSS

Description

This smooth constructor implements random bits model terms. Note that this is experimental.

Usage

## Linear smooth constructor.
rb(..., k = 50)

## For mgcv. # S3 method for randombits.smooth.spec smooth.construct(object, data, knots, ...)

Value

Function rb(), similar to function s a simple smooth specification object.

Arguments

...

For function rb() a formula of the type ~x1+x2+x3 that specifies the covariates that should be modeled.

k

Integer, number of radnom bit columns in the design matrix.

object, data, knots

See smooth.construct.

See Also

bamlss, predict.bamlss, bfit, boost

Examples

Run this code
if (FALSE) ## Simulate data.
set.seed(123)
d <- GAMart()

## Estimate model.
f <- num ~ rb(x1) + rb(x2) + rb(x3) + rb(~lon+lat)

b <- bamlss(f, data = d)

plot(b)

Run the code above in your browser using DataLab