reg_spline_X {pmcalibration}R Documentation

Make a design matrix for regression spline

Description

Make a design matrix for regression spline

Usage

reg_spline_X(x, xp, smooth, ...)

Arguments

x

values of the predictor

xp

values of the predictor for plotting the calibration curve

smooth

spline to use (rms::rcs, splines::ns, splines::bs currently supported via 'rcs', 'ns', 'bs'). smooth = 'none' results in x as only predictor (i.e., no spline)

...

additional arguments for specific splines ('nk' or 'knots' for 'rcs', 'df' or 'knots' for 'ns' or 'bs')

Value

a list containing

Examples

x <- rnorm(100)
xp <- seq(min(x), max(x), length.out=50)
reg_spline_X(x = x, xp = xp, smooth="rcs", nk=6)

[Package pmcalibration version 0.1.0 Index]