unireg: Fitting a unimodal penalized spline regression.

Description Usage Arguments Details Value Author(s) References See Also Examples

Description

Function for fitting spline regressions to data. The fit can be constrained to be unimodal, inverse-unimodal, isotonic or antitonic and an arbitrary penalty on the B-spline coefficients can be used.

Usage

1
2
3
4
5
unireg(x, y, w=NULL, sigmasq=NULL, a=min(x), b=max(x), g=10, k=3,
	constr=c("unimodal","none","invuni","isotonic","antitonic"),
	penalty=c("diff", "none", "sigEmax", "self", "diag"), Om=NULL,
	beta0=NULL, coinc=NULL, tuning=TRUE, abstol=0.01,vari=5,ordpen=2,
	m=1:(g+k+1), allfits=FALSE, nCores=1)

Arguments

x

A numeric vector of x-values, length n. Contains at least d = g+k+1 <= n distinct values.

y

A numeric vector of observed y-values of length n.

w

A positive numeric weight vector of length n. The weights do not have to sum to n, but will be transformed to do so internally. If sigmasq is given, w should be NULL (default).

sigmasq

Estimate(s) of the residual (co-)variance(s). Can be a positive numeric vector of length n, giving estimates for the variance at each of the x-values. If it is a vector of length 1, equal varainces across all x-values are assumed.
If sigmasq=NULL, each x-value has to be appear at least twice and a global variance (same for all x-values) is estimated internally.
If sigmasq is given, w should be NULL.

a

The left numeric boundary of the interval, on which the spline is defined. If coinc=TRUE, the spline is zero to the left of this value. By default a is equal to the minimal x-value.

b

The right numieric boundary of the interval, on which the spline is defined. If coinc=TRUE, the spline is zero to the right of this value. By default b is equal to the maximal x-value.

g

A non-negative integer giving the number of inner knots of the spline (default: 10).

k

A non-negative integer specifying the degree of the spline. By default a cubic spline (k = 3) is fitted.

constr

A character string specifying the shape constraint for the fit. Can be one of "unimodal" (default), "none", "invuni" (inverse-unimodal), "isotonic" or "antitonic".

penalty

A character string specifying, which penalty on the B-spline coefficients should be used. Possible choices are "diff" (default) for the differences penalty of order ordpen, "none" for no penalty, "sigEmax" for the sigmoid Emax penalty, "self" for a self-defined penalty and "diag" for a ridge penalty. For a self-defined penalty, Om and beta0 have to be provided.

Om

If a self-defined penalty on the B-spline coefficients should be used, Om is the penalty matrix of dimension d x d and full rank $d$. Otherwise, Om should be NULL (default).

beta0

If a self-defined penalty on the B-spline coefficients should be used, beta0 is the penalty vector of length d. Otherwise, beta0 should be NULL (default).

coinc

Logical indicating, if the outer knots of the knot sequence should be coincident with the boundary knots or not? Default is NULL and altering has no effect, if a pre-defined penalty is used. If penalty="self", it has to be specified.

tuning

Logical indicating, if the tuning parameter lambda should be optimized with (tuning=TRUE, default, computationally expensive) or without (tuning=FALSE) consideration of the shape constraint. Changing tuning has no effect, when constr="none" or penalty="none".

abstol

The iterative estimation of the residual variance sigmasq and the coefficient vector stops after iteration v, when |hat{sigma}^{(v)} - hat{sigma}^{(v-1)}| is less than a positive numeric value abstol (default: 0.01) or when v=10. If sigmasq is not NULL, the supplied value is used as starting value in this iteration scheme. There is no iterative estimation, if abstol is set to NULL.

vari

Variance parameter sigma_v^2 > 0 in the full-rank precision matrix of the prior for beta. By default 5.

ordpen

Order of the difference penalty (integer >= 0, default 2). Only effective, if penalty="diff".

m

An integer vector specifying the modes of the coefficient vector which should be used for fitting, in explicit, a subset of {1,...,d}. This argument only has an effect if constr="unimodal" or "invuni".

allfits

Logical indicating if the estimated coefficient vectors for all modes in m should be returned (TRUE) or only the one with minimal residual sum of squares (FALSE).

nCores

The integer number of cores used for parallelization. If nCores=1, there is no parallelization (default).

Details

This function combines implementations of the spline methods described in Koellmann et al. Given paired data (x_1,y_1),...,(x_n,y_n) it is possible to fit regression splines using the B-spline basis and the maximum likelihood approach. If the spline is unrestricted, the problem reduces to a simple linear regression problem. If the spline is restricted to be unimodal, inverse unimodal, isotonic or antitonic, this leads to a quadratic programming problem. If a penalty is used on the spline coefficients, the tuning parameter is chosen via restricted maximum likelihood (REML).

The data should contain repeated measurements at certain points on the x-axis (at least 2 for each point), so that a start estimate of the residual variance can be calculated. Then the function iterates between estimation of the spline coefficients and of the variance. Both estimates will be weighted, if weights are given. If there is only one measurement per x-value, the function expects an input in sigmasq, an estimate of the variance(s) used for weighted estimation (no further weights can be used).

If no penalty is used, the number of estimable B-spline coefficients, which is d=g+k+1, equals the number of distinct x-values. g and k have to be chosen accordingly.

Value

Returns an object of class "unireg", that is, a list containing the following components:

x

The (sorted) vector of x-values.

y

The input vector of y-values (sorted according to x).

w

The vector of weights used for fitting (sorted according to x).

a

The left boundary of the domain [a,b].

b

The right boundary of the domain [a,b].

g

The number g of inner knots.

degree

The degree k of the spline.

knotsequence

The sequence of knots (length g+2k+2) used for spline fitting.

constr

The constraint on the coefficients.

penalty

The type of penalty used.

Om

The penalty matrix.

beta0

The penalty vector.

coinc

The input parameter coinc.

tuning

The input parameter tuning.

abstol

The input value of abstol.

vari

The input variance parameter vari.

ordpen

The order of the difference penalty.

coef

The vector of estimated B-spline coefficients (corresponding to the mode with minimal RSS).

fitted.values

The fitted values at each x-value (corresponding to the mode with minimal RSS).

lambdaopt

The optimal tuning parameter found via REML (corresponding to the mode with minimal RSS).

sigmasq

The estimated residual variance. If the input for abstol was NULL, sigmasq equals its input value.

variter

The number v of iterations used to estimate the spline coefficients and the variance.

ed

The effective degrees of freedom (corresponding to the mode with minimal RSS).

modes

The input vector m of modes.

allcoefs

A matrix of coefficient vectors (corresponding to the modes specified in m) or NULL (if allfits=FALSE)

Author(s)

Claudia Koellmann

References

Koellmann, C., Bornkamp, B., and Ickstadt, K. (2104), Unimodal regression using Bernstein-Schoenberg splines and penalties, Biometrics 70 (4), 783-793.

See Also

unimat, equiknots, plot.unireg, points.unireg, print.unireg, predict.unireg,

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
x <- sort(rep(0:5,20))         
n <- length(x)               
set.seed(41333)
func <- function(mu){rnorm(1,mu,0.05)}
y <- sapply(dchisq(x,3),func)

# plot of data
plot(jitter(x), y, xlab="x (jittered)")

# fit with default settings
fit <- unireg(x, y, g=5)
# short overview of the fitted spline
fit

# prediction at interim values
predict(fit, c(1.5,2.5,3.5,4.5))

# fit without penalty (we can use at most g=2 inner knots if k=3)
fit2 <- unireg(x, y, penalty="none", g=2)

# plot of fitted spline with or without data
plot(fit2)
plot(fit2, onlySpline=TRUE)

# fit without penalty and without constraint 
# (does not differ from fit2 with constraint in this case)
fit3 <- unireg(x, y, penalty="none", g=2, constr="none")

# plot of true and fitted functions
plot(jitter(x), y, xlab="x (jittered)")
curve(dchisq(x,3), 0, 5, type="l", col="grey", lwd=2, add=TRUE)
points(fit, lwd=2)
points(fit2, col="blue", lwd=2)
points(fit3, col="red", lwd=2)
legend("bottomright", legend = c("true mean function", 
        "difference penalized unimodal fit", 
        "unpenalized fit (with and without constraint)"),
    col=c("grey","black","red"),lwd=c(2,2,2))

# estimated variance
fit$sigmasq
fit2$sigmasq

## Not run: 
# fit with isotonic, antitonic and inverse-unimodal constraint (just for completeness)
fit4 <- unireg(x,y,constr="antitonic",g=5)
fit5 <- unireg(x,y,constr="isotonic",g=5)
fit6 <- unireg(x,y,constr="invuni",g=5)

points(fit4,col="orange",lwd=2)
points(fit5,col="brown",lwd=2)
points(fit6,col="yellow",lwd=2)

# suppose only aggregated data had been given
means <- c(mean(y[1:20]), mean(y[21:40]), mean(y[41:60]), mean(y[61:80]), 
           mean(y[81:100]), mean(y[101:120]))
sigmasq <- c(sd(y[1:20]),sd(y[21:40]),sd(y[41:60]),sd(y[61:80]),sd(y[81:100]),sd(y[101:120]))^2

# unimodal fit with differences penalty
fit7 <- unireg(x=unique(x), y=means, g=5, w=NULL, sigmasq=sigmasq, abstol=NULL)
plot(unique(x), means, pch=19, ylim=range(y))
curve(dchisq(x,3), 0, 5, type="l", col="grey", lwd=2, add=TRUE)
points(fit7, type="l", col="green", lwd=2)
legend("bottomright", legend = c("true mean function", "observed mean values", 
    "diff. penalized unimodal fit for means"),
  col=c("grey","black","green"), lty=c(1,NA,1), lwd=c(2,0,2), pch=c(NA,19,NA))

## End(Not run)

uniReg documentation built on May 2, 2019, 6:50 a.m.

Related to unireg in uniReg...