changePoint: Lag coefficient change points

Description Usage Arguments Value Examples

Description

For each set of distributed lag terms in the model, finds and returns the (named) integer indices of radii where the corresponding coefficient is significantly different from zero, but the immediately larger radius is not significantly different from zero.

Usage

1
2
3
4
changePoint(object, ...)

## S4 method for signature 'dlMod'
changePoint(object, ...)

Arguments

object

a fitted model object with viable lagIndex and confint methods

...

additional arguments passed to confint

Value

A list of integer vectors. One list element for each set of DL terms in the model

Examples

1
2
3
4
5
6
7
8
data (simdata)

## Setup distance count matrix and corresponding lag distances
X <- as.matrix(simdata[, -(1:3)])
lag <- seq(0.1, 10, length.out = ncol(X))

fit <- dlm(Y ~ Age + Gender + cr(lag, X), data = simdata)
changePoint(fit)

Biostatistics4SocialImpact/dlm documentation built on May 19, 2019, 10:47 p.m.