viewBasis {simstudy} | R Documentation |
Plot basis spline functions
Description
Plot basis spline functions
Usage
viewBasis(knots, degree)
Arguments
knots |
A vector of values between 0 and 1, specifying cut-points for splines |
degree |
Integer specifying degree of curvature. |
Value
A ggplot object that contains a plot of the basis functions. In total, there will be length(knots) + degree + 1 functions plotted.
Examples
knots <- c(0.25, 0.50, 0.75)
viewBasis(knots, degree = 1)
knots <- c(0.25, 0.50, 0.75)
viewBasis(knots, degree = 2)
knots <- c(0.25, 0.50, 0.75)
viewBasis(knots, degree = 3)
[Package simstudy version 0.8.1 Index]