Plot a Basis Object
plot.basisfd
Language Reference for FDA Library

Plot a Basis Object

DESCRIPTION:

Plots all the basis functions.

USAGE:

plot.basisfd(basisobj, ...)

REQUIRED ARGUMENTS:

basisobj
a basis object

OPTIONAL ARGUMENTS:

...
additional plotting parameters that can be used in plot

VALUE:

none

SIDE EFFECTS:

a plot of the basis functions

SEE ALSO:

plot.fd

EXAMPLES:

# set up the b-spline basis for the lip data, using 23 basis functions,
#   order 4 (cubic), and equally spaced knots.
#  There will be 23 - 4 = 19 interior knots at 0.05, ..., 0.95
lipbasis <- create.bspline.basis(c(0,1), 23)
# plot the basis functions
plot(lipbasis)