Title: | Unimodal Penalized Spline Regression using B-Splines |
---|---|
Description: | Univariate spline regression. It is possible to add the shape constraint of unimodality and predefined or self-defined penalties on the B-spline coefficients. |
Authors: | Claudia Koellmann |
Maintainer: | Claudia Koellmann <[email protected]> |
License: | GPL (>= 3) |
Version: | 1.1 |
Built: | 2024-11-05 06:30:35 UTC |
Source: | CRAN |
Determines g+2k+2 knots for the spline basis of degree k on the interval . The g inner knots lie equidistant in
. If
coinc=TRUE
, the outer knots (k on each side of the interval) are placed coincident with a and b, otherwise the outer knots are also equidistant beyond .
equiknots(a, b, g, k, coinc)
equiknots(a, b, g, k, coinc)
a |
Left numeric boundary of the spline interval. |
b |
Right numeric boundary of the spline interval. |
g |
A non-negative integer giving the number of inner knots. |
k |
A non-negative integer specifying the degree of the spline basis. |
coinc |
Logical indicating, if the outer knots should be coincident with the boundary knots or not. If |
A numeric vector of length g+2k+2 with knot locations.
Claudia Koellmann
equiknots(0,5,3,3,TRUE) equiknots(0,5,3,3,FALSE)
equiknots(0,5,3,3,TRUE) equiknots(0,5,3,3,FALSE)
unireg
objects.
Plotting a unimodal regression object.
## S3 method for class 'unireg' plot(x, onlySpline=FALSE, type="l", xlab="x", ylab=NULL, col="black", ...)
## S3 method for class 'unireg' plot(x, onlySpline=FALSE, type="l", xlab="x", ylab=NULL, col="black", ...)
x |
Object of class |
onlySpline |
Logical indicating whether only the fitted spline or also the original data points should be plotted. Defaults to FALSE (plotting both). |
type |
Per default plotting type |
xlab |
Per default the x-axis is labelled with "x". |
ylab |
If the user does not specify a label for the y-axis, that is when |
col |
Colour of the spline function to be plotted (default: black). |
... |
other parameters to be passed through to the generic |
This is a plot method for unimodal regression objects. The spline function is plotted using a grid of x-values equally spaced across the interval on which the spline is defined. The distance between the grid values is given by the minimal distance of the observed x-values (used for fitting) divided by 10.
Claudia Koellmann
unireg
,predict.unireg
,points.unireg
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) # fit with default settings fit <- unireg(x, y, g=5) # short overview of the fitted spline fit # plot of fitted spline with and without data plot(fit, col="orange") plot(fit, onlySpline=TRUE)
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) # fit with default settings fit <- unireg(x, y, g=5) # short overview of the fitted spline fit # plot of fitted spline with and without data plot(fit, col="orange") plot(fit, onlySpline=TRUE)
unireg
objects.
Plotting a unimodal regression object into an existing plot.
## S3 method for class 'unireg' points(x, type="l", ...)
## S3 method for class 'unireg' points(x, type="l", ...)
x |
Object of class |
type |
Per default plotting type |
... |
other parameters to be passed through to the generic |
This is a points method for unimodal regression objects. The spline function is plotted using a grid of x-values equally spaced across the interval on which the spline is defined. The distance between the grid values is given by the minimal distance of the observed x-values (used for fitting) divided by 10.
Claudia Koellmann
unireg
,predict.unireg
,plot.unireg
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 # 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, col="orange") legend("bottomright", legend = c("true mean function", "difference penalized unimodal fit"), col=c("grey","orange"),lwd=c(2,2))
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 # 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, col="orange") legend("bottomright", legend = c("true mean function", "difference penalized unimodal fit"), col=c("grey","orange"),lwd=c(2,2))
unireg
objects.
Predicted values based on a unimodal regression object.
## S3 method for class 'unireg' predict(object, newdata, ...)
## S3 method for class 'unireg' predict(object, newdata, ...)
object |
Object of class |
newdata |
A numeric vector of values at which to evaluate the fitted spline function. |
... |
Further arguments (currently not used). |
predict.unireg
produces predicted values by evaluating the fitted regression spline function at the values in newdata
.
Returns a numeric vector of predicted function values.
Claudia Koellmann
unireg
,plot.unireg
,points.unireg
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))
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))
unireg
objects.
Prints unimodal regression objects.
## S3 method for class 'unireg' print(x, ...)
## S3 method for class 'unireg' print(x, ...)
x |
Object of class |
... |
Further arguments (currently not used). |
Prints a short overview of a fitted unimodal regression object to the console, namely, the type of the fitted model (including degree of the spline and type of constraint and penalty), the coefficients and their mode location, the tuning parameter and the variance estimate.
Invisibly returns the input x
.
Claudia Koellmann
unireg
,plot.unireg
,points.unireg
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
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
Returns a matrix C that can be used to specify linear constraints to impose unimodality with mode at the m-th element on a numeric vector b of length p.
unimat(p, m)
unimat(p, m)
p |
Integer (>=2) giving the length of the vector b. |
m |
Location of the mode within the vector b. Should be in integer between 1 and p. |
Matrix C with coefficients for the linear constraints.
Claudia Koellmann
unimat(4,2) unimat(5,3)
unimat(4,2) unimat(5,3)
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.
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)
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)
x |
A numeric vector of x-values, length n. Contains at least |
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 |
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. |
a |
The left numeric boundary of the interval, on which the spline is defined. If |
b |
The right numieric boundary of the interval, on which the spline is defined. If |
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 |
Om |
If a self-defined penalty on the B-spline coefficients should be used, |
beta0 |
If a self-defined penalty on the B-spline coefficients should be used, |
coinc |
Logical indicating, if the outer knots of the knot sequence should be coincident with the boundary knots or not? Default is |
tuning |
Logical indicating, if the tuning parameter lambda should be optimized with ( |
abstol |
The iterative estimation of the residual variance |
vari |
Variance parameter |
ordpen |
Order of the difference penalty (integer |
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 |
allfits |
Logical indicating if the estimated coefficient vectors for all modes in |
nCores |
The integer number of cores used for parallelization. If |
This function combines implementations of the spline methods described in Koellmann et al. Given paired data 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.
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 |
degree |
The degree |
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 |
tuning |
The input parameter |
abstol |
The input value of |
vari |
The input variance parameter |
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 |
variter |
The number |
ed |
The effective degrees of freedom (corresponding to the mode with minimal RSS). |
modes |
The input vector |
allcoefs |
A matrix of coefficient vectors (corresponding to the modes specified in |
Claudia Koellmann
Koellmann, C., Bornkamp, B., and Ickstadt, K. (2104), Unimodal regression using Bernstein-Schoenberg splines and penalties, Biometrics 70 (4), 783-793.
unimat
, equiknots
, plot.unireg
, points.unireg
, print.unireg
, predict.unireg
,
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)
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)