sm.incr {bcgam}R Documentation

Specify a smooth and increasing shape-restriction in a bcgam formula

Description

A symbolic routine to define that the systematic component \eta is smooth and increasing with respect to a predictor in a bcgam formula.

Usage

sm.incr(x, numknots = 0, knots = 0, space = "Q")

Arguments

x

a numeric predictor of length n.

numknots

number of knots used to constrain x. It is ignored when the knots argument is specified by the user. If neither numknots nor knots are specified by the user, then numknots is floor{4+n^(1/7)}. The default is 0.

knots

knots used to constrain x. If they are not specified by the user, then they will be automatically created based on numknots and space. The default is 0.

space

a character specifying the method to create knots. It is ignored when the knots argument is specified by the user. If space="E", then equally spaced knots will be created; if space="Q", then a vector of equal quantiles will be created based on x with duplicate elements removed. The default is "Q".

Details

sm.incr returns the vector x and assigns five attributes to it: name, shape (1 for "smooth and increasing"), numknots, knots and space.

This routine does not create the splines basis vectors by itself.

Value

x

The numeric predictor x.

Author(s)

Cristian Oliva-Aviles and Mary C. Meyer

References

Meyer, M. C. (2008) Inference using shape-restricted regression splines. Annals of Applied Statistics 2(3), 1013-1033.

Examples

data(duncan)

prestige <- duncan$prestige

# specify knots
sm.incr(prestige, knots=c(3,9,30,57,86,97))

# specify number of knots
prestige.smincr <- sm.incr(prestige, numknots=7)

# check attributes
attributes(prestige.smincr)

[Package bcgam version 1.0 Index]