Learn R Programming

simstudy (version 0.7.0)

viewBasis: Plot basis spline functions

Description

Plot basis spline functions

Usage

viewBasis(knots, degree)

Value

A ggplot object that contains a plot of the basis functions. In total, there will be length(knots) + degree + 1 functions plotted.

Arguments

knots

A vector of values between 0 and 1, specifying cut-points for splines

degree

Integer specifying degree of curvature.

Examples

Run this code
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)

Run the code above in your browser using DataLab